1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
fxequals
191bf3ac1d updated info 2025-07-19 22:31:49 -04:00
fxequals
2dbeed20c1 added session secret notes 2025-07-19 21:43:02 -04:00
6 changed files with 52 additions and 23 deletions

View File

@@ -1 +1 @@
SESSION_SECRET= # openssl rand -base64 32
SESSION_SECRET=

View File

@@ -20,7 +20,7 @@ services:
PUID: 1000
PGID: 1000
APP_ENV: "production"
PUBLIC_SESSION_SECRET: ${SESSION_SECRET}
PUBLIC_SESSION_SECRET: ${SESSION_SECRET} # openssl rand -base64 32
# Optional: Set if Docker access fails
# DOCKER_GID: 998

View File

@@ -1,22 +1,22 @@
{
"$schema": "https://templates.arcane.ofkm.dev/schema.json",
"name": "obsidian-logic",
"description": "Docker App Templates",
"description": "docker apps for obsidian-logic",
"version": "1.0.0",
"author": "fxequals",
"url": "https://gitea.mydigitalfix.com/fxequals/docker-compose/src/branch/main/obsidian-logic",
"templates": [
{
"id": "adguard",
"name": "AdGuard",
"description": "DNS Server",
"id": "authentik",
"name": "Authentik",
"description": "2FA access & authorization",
"version": "1.0.0",
"author": "fxequals",
"compose_url": "https://gitea.mydigitalfix.com/fxequals/docker-compose/raw/branch/main/obsidian-logic/adguard/ad-guard.yml",
"env_url": "",
"documentation_url": "",
"tags": ["dns", "webfilter"],
"updated_at": "2025-07-13T13:32:00Z"
"compose_url": "https://gitea.mydigitalfix.com/fxequals/docker-compose/raw/branch/main/obsidian-logic/authentik/authentik.yml",
"env_url": "https://gitea.mydigitalfix.com/fxequals/docker-compose/raw/branch/main/obsidian-logic/authentik/authentik.env",
"documentation_url": "https://gitea.mydigitalfix.com/fxequals/docker-compose/src/branch/main/obsidian-logic/authentik/",
"tags": ["identity", "2fa", "access"],
"updated_at": "2025-07-13T13:31:00Z"
},
{
"id": "arcane",
@@ -30,18 +30,6 @@
"tags": ["identity", "2fa", "access"],
"updated_at": "2025-07-13T13:31:00Z"
},
{
"id": "authentik",
"name": "Authentik",
"description": "2FA access & authorization",
"version": "1.0.0",
"author": "fxequals",
"compose_url": "https://gitea.mydigitalfix.com/fxequals/docker-compose/raw/branch/main/obsidian-logic/authentik/authentik.yml",
"env_url": "https://gitea.mydigitalfix.com/fxequals/docker-compose/raw/branch/main/obsidian-logic/authentik/authentik.env",
"documentation_url": "https://gitea.mydigitalfix.com/fxequals/docker-compose/src/branch/main/obsidian-logic/authentik/",
"tags": ["identity", "2fa", "access"],
"updated_at": "2025-07-13T13:31:00Z"
},
{
"id": "hugo",
"name": "Hugo",

View File

@@ -0,0 +1,3 @@
# Overview
On first run, default user is `arcane` and password is `arcane-admin`

View File

View File

@@ -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} # openssl rand -base64 32
# 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/