From d1872746d45f4d1cdec32f81f2c9c2b800d9c3dd Mon Sep 17 00:00:00 2001 From: jrodriiguezg Date: Sat, 15 Aug 2026 15:47:40 +0200 Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20arcane=5Fcompose.yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- arcane_compose.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 arcane_compose.yaml diff --git a/arcane_compose.yaml b/arcane_compose.yaml new file mode 100644 index 0000000..ca9c0f0 --- /dev/null +++ b/arcane_compose.yaml @@ -0,0 +1,22 @@ +services: + arcane: + image: ghcr.io/getarcaneapp/manager:latest + container_name: arcane + ports: + - '9443:3552' + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - arcane-data:/app/data + - /opt/docker:/opt/docker # <- mismo path dentro y fuera + environment: + - APP_URL=http://localhost:9443 + - PUID=1000 + - PGID=1000 + - ENCRYPTION_KEY='' + - JWT_SECRET='' + - PROJECTS_DIRECTORY=/opt/docker + cgroup: host + restart: unless-stopped + +volumes: + arcane-data: