mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-05 06:20:10 +01:00
34 lines
709 B
YAML
34 lines
709 B
YAML
version: '3.9'
|
|
|
|
name: anythingllm
|
|
|
|
networks:
|
|
anything-llm:
|
|
driver: bridge
|
|
|
|
services:
|
|
anything-llm:
|
|
container_name: anything-llm
|
|
image: anything-llm:latest
|
|
platform: linux/amd64
|
|
build:
|
|
context: ../.
|
|
dockerfile: ./docker/Dockerfile
|
|
args:
|
|
ARG_UID: ${UID}
|
|
ARG_GID: ${GID}
|
|
volumes:
|
|
- "./.env:/app/server/.env"
|
|
- "../server/storage:/app/server/storage"
|
|
- "../collector/hotdir/:/app/collector/hotdir"
|
|
- "../collector/outputs/:/app/collector/outputs"
|
|
user: "${UID}:${GID}"
|
|
ports:
|
|
- "3001:3001"
|
|
env_file:
|
|
- .env
|
|
networks:
|
|
- anything-llm
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|