You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
690 B
31 lines
690 B
name: anythingllm
|
|
|
|
networks:
|
|
anything-llm:
|
|
driver: bridge
|
|
|
|
services:
|
|
anything-llm:
|
|
container_name: anythingllm
|
|
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"
|