diff --git a/emerald-theory/arcane/docker-compose.yml b/emerald-theory/arcane/docker-compose.yml new file mode 100644 index 0000000..1688476 --- /dev/null +++ b/emerald-theory/arcane/docker-compose.yml @@ -0,0 +1,38 @@ +--- + +# Arcane +# Modern Docker Web UI +# Created by arcane +# ↳ https://github.com/ofkm/arcane + +services: + arcane: + image: ghcr.io/ofkm/arcane:latest + container_name: arcane + restart: unless-stopped + + networks: + - proxy +# ports: +# - 3000:3000 + + environment: + PUID: 1000 + PGID: 1000 + APP_ENV: "production" + PUBLIC_SESSION_SECRET: ${SESSION_SECRET} +# Optional: Set if Docker access fails +# DOCKER_GID: 998 + + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - /etc/timezone:/etc/timezone:ro + - /etc/localtime:/etc/localtime:ro + - /home/fxequals/docker/arcane/data:/app/data + - /opt/stacks:/opt/stacks:ro # Import existing stacks from Dockge + +networks: + proxy: + external: true + +# Documentation available at https://arcane.ofkm.dev/ \ No newline at end of file