mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-15 10:50:31 +01:00
2de6d64214
* Improve frontend layer size and dep logging - test * add temp build image for branch * try to compress layers * clean apt-get post-install * Patch collector layer to preserve cache * prep merge
32 lines
690 B
YAML
32 lines
690 B
YAML
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"
|