From dbc5ae00d0691f55e212457d34c041573f5f7ebc Mon Sep 17 00:00:00 2001 From: fxequals Date: Sat, 19 Jul 2025 07:45:57 -0400 Subject: [PATCH] inital commit --- emerald-theory/arcane/docker-compose.yml | 38 ++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 emerald-theory/arcane/docker-compose.yml 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