49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
---
|
|
|
|
# Arcane
|
|
# Modern Docker Web UI
|
|
# Created by arcane
|
|
# ↳ https://github.com/getarcaneapp/arcane
|
|
|
|
services:
|
|
arcane:
|
|
image: ghcr.io/getarcaneapp/arcane
|
|
container_name: arcane
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
- proxy
|
|
# ports:
|
|
# - 3552:3552
|
|
|
|
environment:
|
|
PUID: 1000
|
|
PGID: 1000
|
|
APP_URL: https://arcane.mydigitalfix.com
|
|
ENCRYPTION_KEY: ${ENCRYPTION_KEY}
|
|
JWT_SECRET: ${JWT_SECRET}
|
|
|
|
volumes:
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- /home/fxequals/docker/arcane/data:/app/data
|
|
- /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:
|
|
proxy:
|
|
external: true
|
|
|
|
# Documentation available at https://getarcane.app/docs |