Files
docker-compose-files/archive/arcane/compose.yaml
T
2026-01-18 13:51:07 +01:00

29 lines
802 B
YAML

services:
arcane:
deploy:
resources:
limits:
memory: 256M
image: ghcr.io/getarcaneapp/arcane:latest
container_name: arcane
restart: unless-stopped
ports:
- 9552:3552
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- data:/app/data
environment:
- APP_URL=http://localhost:9552
- PUID=1000
- PGID=1000
- ENCRYPTION_KEY=f2447368aab85e19efe118d061656e76def29903309eaa3d4e81459d9b1bf3d8
- JWT_SECRET=4befd81facdf568ad35f896767197e3065f47eefc1ec7725182b272a8c796a5d
- LOG_LEVEL=warn
- LOG_JSON=false
- OIDC_ENABLED=false
- DATABASE_URL=file:./data/arcane.db?_pragma=journal_mode(WAL)&_pragma=busy_timeout(2500)&_txlock=immediate
volumes:
data:
driver: local
networks: {}