added arcane service and .env variables for

encryption and jwt secrets
This commit is contained in:
Ricardo
2025-09-22 23:17:47 +01:00
parent 9c3dde0cb7
commit 089c9e2b7c
2 changed files with 28 additions and 2 deletions

View File

@@ -12,4 +12,9 @@ HDDSTORAGE=/home/{youruser}/Storage/
#Your public ip, auto for auto detect
SERVERURL=auto
#number of devices to generate configuration to connect to the wireguard vpn
PEERS=7
PEERS=7
APP_URL="http://localhost:9010"
ENVIRONMENT=production
ENCRYPTION_KEY={your_encryption_key} #Run command: openssl rand -base64 32
JWT_SECRET={your_jwt_secret} #Run command: openssl rand -base64 32

View File

@@ -143,4 +143,25 @@ services:
- '5055:5055'
volumes:
- '${ROOT}/MediaCenter/config/overseerr/config:/app/config'
restart: unless-stopped
restart: unless-stopped
arcane:
image: ghcr.io/ofkm/arcane:latest
container_name: arcane
ports:
- '9010:3552'
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- arcane-data:/app/data
- '${ROOT}/MediaCenter/config/arcane/projects:/app/data/projects'
environment:
- APP_URL=${APP_URL}
- PUID=${PUID}
- PUID=${PUID}
- ENCRYPTION_KEY=${ENCRYPTION_KEY}
- JWT_SECRET=${JWT_SECRET}
- ENVIRONMENT=${ENVIRONMENT}
restart: unless-stopped
volumes:
arcane-data: