Uploading Everything

Uploading Every Docker Compose YML file to the Repo
This commit is contained in:
2026-02-12 17:12:19 +02:00
commit fe628b774f
38 changed files with 1273 additions and 0 deletions

20
Arcane/docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
services:
arcane:
image: ghcr.io/ofkm/arcane:latest
container_name: arcane
ports:
- '3000:3000'
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- C:\Docker\AppData\arcane:/app/data
environment:
- APP_ENV=production # Required
- PUBLIC_SESSION_SECRET=your_super_strong_random_secret_here # Generate: openssl rand -base64 32
# Optional: Match your host user for permissions
# - PUID=1000
# - PGID=1000
# Optional: Set if Docker access fails
# - DOCKER_GID=998
# Optional: For local HTTP testing only
# - PUBLIC_ALLOW_INSECURE_COOKIES=true
restart: unless-stopped