mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-05 06:20:10 +01:00
58971e8b30
* Update build process to support multi-platform builds Bump @lancedb/vectordb to 0.1.19 for ARM&AMD compatibility Patch puppeteer on ARM builds because of broken chromium resolves #539 resolves #548 --------- Co-authored-by: shatfield4 <seanhatfield5@gmail.com>
35 lines
738 B
YAML
35 lines
738 B
YAML
version: "3.9"
|
|
|
|
name: anythingllm
|
|
|
|
networks:
|
|
anything-llm:
|
|
driver: bridge
|
|
|
|
services:
|
|
anything-llm:
|
|
container_name: anything-llm
|
|
image: anything-llm:latest
|
|
build:
|
|
context: ../.
|
|
dockerfile: ./docker/Dockerfile
|
|
args:
|
|
ARG_UID: ${UID:-1000}
|
|
ARG_GID: ${GID:-1000}
|
|
cap_add:
|
|
- SYS_ADMIN
|
|
volumes:
|
|
- "./.env:/app/server/.env"
|
|
- "../server/storage:/app/server/storage"
|
|
- "../collector/hotdir/:/app/collector/hotdir"
|
|
- "../collector/outputs/:/app/collector/outputs"
|
|
user: "${UID:-1000}:${GID:-1000}"
|
|
ports:
|
|
- "3001:3001"
|
|
env_file:
|
|
- .env
|
|
networks:
|
|
- anything-llm
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|