From 36b520ef72caf0a5d733b95d7acc21c0b2fd12c6 Mon Sep 17 00:00:00 2001 From: zkiley Date: Wed, 19 Nov 2025 10:18:35 -0500 Subject: [PATCH] fix: layout and added arcane self-upgrader service --- obsidian-logic/arcane/arcane.yml | 43 ++++++++++++++++++++------------ 1 file changed, 27 insertions(+), 16 deletions(-) diff --git a/obsidian-logic/arcane/arcane.yml b/obsidian-logic/arcane/arcane.yml index edac144..c4ef428 100644 --- a/obsidian-logic/arcane/arcane.yml +++ b/obsidian-logic/arcane/arcane.yml @@ -3,36 +3,47 @@ # Arcane # Modern Docker Web UI # Created by arcane -# ↳ https://github.com/ofkm/arcane +# ↳ https://github.com/getarcaneapp/arcane services: arcane: - image: ghcr.io/ofkm/arcane:latest + image: ghcr.io/getarcaneapp/arcane container_name: arcane restart: unless-stopped networks: - - proxy -# ports: -# - 3000:3000 - + - proxy + # ports: + # - 3552:3552 + environment: PUID: 1000 PGID: 1000 - APP_ENV: "production" - PUBLIC_SESSION_SECRET: ${SESSION_SECRET} # openssl rand -base64 32 -# Optional: Set if Docker access fails -# DOCKER_GID: 998 + APP_URL: https://arcane.mydigitalfix.com + ENCRYPTION_KEY: ${ENCRYPTION_KEY} + JWT_SECRET: ${JWT_SECRET} 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 + - /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://arcane.ofkm.dev/ \ No newline at end of file +# Documentation available at https://getarcane.app/docs \ No newline at end of file