Merge branch 'main' of https://gitea.mydigitalfix.com/fxequals/docker-compose
This commit is contained in:
@@ -3,36 +3,47 @@
|
|||||||
# Arcane
|
# Arcane
|
||||||
# Modern Docker Web UI
|
# Modern Docker Web UI
|
||||||
# Created by arcane
|
# Created by arcane
|
||||||
# ↳ https://github.com/ofkm/arcane
|
# ↳ https://github.com/getarcaneapp/arcane
|
||||||
|
|
||||||
services:
|
services:
|
||||||
arcane:
|
arcane:
|
||||||
image: ghcr.io/ofkm/arcane:latest
|
image: ghcr.io/getarcaneapp/arcane
|
||||||
container_name: arcane
|
container_name: arcane
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
- proxy
|
- proxy
|
||||||
# ports:
|
# ports:
|
||||||
# - 3000:3000
|
# - 3552:3552
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
PUID: 1000
|
PUID: 1000
|
||||||
PGID: 1000
|
PGID: 1000
|
||||||
APP_ENV: "production"
|
APP_URL: https://arcane.mydigitalfix.com
|
||||||
PUBLIC_SESSION_SECRET: ${SESSION_SECRET} # openssl rand -base64 32
|
ENCRYPTION_KEY: ${ENCRYPTION_KEY}
|
||||||
# Optional: Set if Docker access fails
|
JWT_SECRET: ${JWT_SECRET}
|
||||||
# DOCKER_GID: 998
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
- /etc/timezone:/etc/timezone:ro
|
||||||
- /etc/timezone:/etc/timezone:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
- /home/fxequals/docker/arcane/data:/app/data
|
- /home/fxequals/docker/arcane/data:/app/data
|
||||||
# - /opt/stacks:/opt/stacks:ro # Import existing stacks from Dockge
|
- /opt/dockge:/opt/dockge # This maps existing Dockge stacks and lets Arcane manage them, otherwise /host/path/to/projects:/app/data/projects
|
||||||
|
|
||||||
|
upgrader:
|
||||||
|
image: ghcr.io/getarcaneapp/arcane:latest
|
||||||
|
volumes:
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
entrypoint:
|
||||||
|
- /app/arcane
|
||||||
|
command:
|
||||||
|
- upgrade
|
||||||
|
- --auto
|
||||||
|
profiles:
|
||||||
|
- tools
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
proxy:
|
proxy:
|
||||||
external: true
|
external: true
|
||||||
|
|
||||||
# Documentation available at https://arcane.ofkm.dev/
|
# Documentation available at https://getarcane.app/docs
|
||||||
Reference in New Issue
Block a user