Files
dockerserver/arcane/compose.yml
2025-10-10 15:24:33 +00:00

29 lines
767 B
YAML

services:
arcane:
image: ghcr.io/ofkm/arcane:latest
container_name: arcane
restart: unless-stopped
ports:
- 3552:3552
networks:
- reverse-proxy
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- arcane-data:/app/data
environment:
- PUID=1000
- PGID=1000
- APP_URL=http://192.168.1.30:3552
- ENCRYPTION_KEY=cf4fd2f6e3bb3d8c60d9d1eb7c0ee719c5c224de034c77adbe2722ffb10a5101
- JWT_SECRET=7f12f03fd4b958d762771657275c3e67465c4dbd34e447ab41ab4c35f05ea5aa
- DATABASE_URL=file:data/arcane.db?_pragma=journal_mode(WAL)&_pragma=busy_timeout(2500)&_txlock=immediate
networks:
reverse-proxy:
name: reverse-proxy
external: true
volumes:
arcane-data:
driver: local