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