Compare commits
2 Commits
e773203490
...
191bf3ac1d
Author | SHA1 | Date | |
---|---|---|---|
![]() |
191bf3ac1d | ||
![]() |
2dbeed20c1 |
@@ -1 +1 @@
|
||||
SESSION_SECRET= # openssl rand -base64 32
|
||||
SESSION_SECRET=
|
@@ -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
|
||||
|
||||
|
@@ -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",
|
||||
|
3
obsidian-logic/arcane/README.md
Normal file
3
obsidian-logic/arcane/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# Overview
|
||||
|
||||
On first run, default user is `arcane` and password is `arcane-admin`
|
0
obsidian-logic/arcane/arcane.env
Normal file
0
obsidian-logic/arcane/arcane.env
Normal file
38
obsidian-logic/arcane/arcane.yml
Normal file
38
obsidian-logic/arcane/arcane.yml
Normal 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/
|
Reference in New Issue
Block a user