diff --git a/arcane/compose.yaml b/arcane/compose.yaml new file mode 100644 index 0000000..2907e9e --- /dev/null +++ b/arcane/compose.yaml @@ -0,0 +1,24 @@ +services: + arcane: + 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