Merge branch 'main' of https://gitea.mydigitalfix.com/fxequals/docker-compose
This commit is contained in:
34
emerald-theory/arcane-preview-version-1/arcane-preview.yml
Normal file
34
emerald-theory/arcane-preview-version-1/arcane-preview.yml
Normal file
@@ -0,0 +1,34 @@
|
||||
---
|
||||
# Preview of Arcane 1.0
|
||||
|
||||
services:
|
||||
arcane:
|
||||
image: ghcr.io/ofkm/arcane:1.0-preview
|
||||
container_name: arcane
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- proxy
|
||||
|
||||
# ports:
|
||||
# - 3552:3552
|
||||
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
ENVIRONMENT: production
|
||||
ENCRYPTION_KEY: ${ENCRYPTION_KEY}
|
||||
DATABASE_URL: 'file:data/arcane.db?_pragma=journal_mode(WAL)&_pragma=busy_timeout(2500)&_txlock=immediate' # Quotes for Dockge nonsense
|
||||
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/dockge:/app/data/projects
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
|
||||
# Documentation available at https://arcane.ofkm.dev/
|
2
emerald-theory/arcane-preview-version-1/arcane.env
Normal file
2
emerald-theory/arcane-preview-version-1/arcane.env
Normal file
@@ -0,0 +1,2 @@
|
||||
ENCRYPTION_KEY=
|
||||
JWT_SECRET=
|
@@ -35,6 +35,21 @@
|
||||
"updated_at": "2025-07-13T13:31:00Z",
|
||||
"version": "1.0.0"
|
||||
},
|
||||
{
|
||||
"author": "fxequals",
|
||||
"compose_url": "https://gitea.mydigitalfix.com/fxequals/docker-compose/raw/branch/main/emerald-theory/arcane-preview-version-1/arcane-preview.yml",
|
||||
"description": "Web based Docker GUI 1.0 preview",
|
||||
"documentation_url": "https://gitea.mydigitalfix.com/fxequals/docker-compose/src/branch/main/emerald-theory/arcane-preview-version-1/",
|
||||
"env_url": "https://gitea.mydigitalfix.com/fxequals/docker-compose/raw/branch/main/emerald-theory/arcane-preview-version-1/arcane.env",
|
||||
"id": "arcane-preview",
|
||||
"name": "Arcane 1.0 Preview",
|
||||
"tags": [
|
||||
"docker-management",
|
||||
"web-based"
|
||||
],
|
||||
"updated_at": "2025-07-13T13:31:00Z",
|
||||
"version": "1.0.0"
|
||||
},
|
||||
{
|
||||
"author": "fxequals",
|
||||
"compose_url": "https://gitea.mydigitalfix.com/fxequals/docker-compose/raw/branch/main/emerald-theory/authentik/authentik.yml",
|
||||
|
@@ -6,9 +6,37 @@
|
||||
# ↳ https://github.com/chevereto/docker
|
||||
|
||||
services:
|
||||
chevereto:
|
||||
image: ghcr.io/chevereto/chevereto:latest
|
||||
container_name: chevereto
|
||||
chevereto-db:
|
||||
image: mariadb:jammy
|
||||
container_name: chevereto-db
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
test: ["CMD", "healthcheck.sh", "--su-mysql", "--connect"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 80:80
|
||||
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
MYSQL_ROOT_PASSWORD: ${DB_ROOTPASSWORD}
|
||||
MYSQL_DATABASE: chevereto
|
||||
MYSQL_USER: chevereto
|
||||
MYSQL_PASSWORD: ${DB_PASSWORD}
|
||||
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- chevereto-database:/var/lib/mysql
|
||||
|
||||
chevereto-server:
|
||||
image: chevereto/chevereto:latest
|
||||
container_name: chevereto-server
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
@@ -19,25 +47,31 @@ services:
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
CHEVERETO_MAX_UPLOAD_SIZE: 1G
|
||||
CHEVERETO_MAX_POST_SIZE: 1G
|
||||
CHEVERETO_DB_NAME: chevereto
|
||||
CHEVERETO_DB_PORT: 3306
|
||||
CHEVERETO_DB_PASS: ${DB_PASSWORD}
|
||||
CHEVERETO_DB_HOST: chevereto-db
|
||||
CHEVERETO_DB_USER: chevereto
|
||||
CHEVERETO_DB_HOST: database
|
||||
CHEVERETO_DB_PASS: ${DB_PASSWORD}
|
||||
CHEVERETO_DB_PORT: 3306
|
||||
CHEVERETO_DB_NAME: chevereto
|
||||
CHEVERETO_HOSTNAME: photos.ignitedinspirations.net
|
||||
CHEVERETO_HOSTNAME_PATH: /
|
||||
CHEVERETO_HTTPS: 1
|
||||
CHEVERETO_MAX_POST_SIZE: 1G
|
||||
CHEVERETO_MAX_UPLOAD_SIZE: 1G
|
||||
CHEVERETO_SERVICING: server
|
||||
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- chevereto-data:/var/www/html/images
|
||||
- chevereto-storage:/var/www/html/images/
|
||||
- chevereto-app:/var/www/html/
|
||||
|
||||
volumes:
|
||||
database:
|
||||
storage:
|
||||
app:
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
|
||||
volumes:
|
||||
chevereto-data:
|
||||
driver: local
|
||||
|
||||
# Documentation available at https://v4-docs.chevereto.com/#install
|
||||
# Documentation available at https://v4-docs.chevereto.com/#install
|
Reference in New Issue
Block a user