Verzeichnisse updaten

This commit is contained in:
2026-01-18 13:51:07 +01:00
parent ccf2160db7
commit 5a3205749c
8 changed files with 161 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
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: {}