This commit is contained in:
2025-09-03 21:20:16 -04:00
6 changed files with 181 additions and 15 deletions

View File

@@ -0,0 +1,41 @@
---
# <REPLACE_NAME>
# <DESCRIPTION>
# Created by <APP_CREATOR_NAME>
# ↳ https://link.to.github
services:
<REPLACE_NAME>:
image: # creator/image_name:latest
container_name: <REPLACE_NAME>
restart: unless-stopped
networks:
- proxy
# ports:
# - 80:80
environment:
PUID: 1000
PGID: 1000
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
# - /path/to/host:path/in/container
# - unique_volume_name:/path/in/container
# labels:
# - 'enabled=true'
networks:
proxy:
external: true
# ip_address: 127.0.0.1
# volumes:
# unique_volume_name:
# driver: local
# Documentation available at https://link.to.docs

40
commits.md Normal file
View File

@@ -0,0 +1,40 @@
# 📝 Commit Messages
We follow the [Conventional Commits](https://www.conventionalcommits.org/) guideline for commit messages.
This helps keep our history clean and makes changelogs easier to generate.
# Format
```
<type>(optional scope): <description>
```
# Examples
```
feat(auth): add OAuth2 login
fix(ui): patch crash on empty input
docs(readme): update installation instructions
```
# Common Types
* **feat:** a new feature (may bump MINOR version)
* **fix:** a bug fix (may bump PATCH version)
* **docs:** documentation only
* **style:** formatting, whitespace, etc.
* **refactor:** code changes without behavior change
* **test:** add or update tests
* **chore:** maintenance (CI, build, tooling, assets)
👉 If your change introduces a **breaking change**, mark it with `!` or add a footer:
```
feat(api)!: remove legacy endpoint
BREAKING CHANGE: old /v1 endpoints were removed
```
---
⚠️ **Note:** This is a guideline, not a strict rule. If you forget, no worries — just try to follow the format when you can

View 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/

View File

@@ -0,0 +1,2 @@
ENCRYPTION_KEY=
JWT_SECRET=

View File

@@ -35,6 +35,21 @@
"updated_at": "2025-07-13T13:31:00Z", "updated_at": "2025-07-13T13:31:00Z",
"version": "1.0.0" "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", "author": "fxequals",
"compose_url": "https://gitea.mydigitalfix.com/fxequals/docker-compose/raw/branch/main/emerald-theory/authentik/authentik.yml", "compose_url": "https://gitea.mydigitalfix.com/fxequals/docker-compose/raw/branch/main/emerald-theory/authentik/authentik.yml",

View File

@@ -6,9 +6,37 @@
# ↳ https://github.com/chevereto/docker # ↳ https://github.com/chevereto/docker
services: services:
chevereto: chevereto-db:
image: ghcr.io/chevereto/chevereto:latest image: mariadb:jammy
container_name: chevereto 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 restart: unless-stopped
networks: networks:
@@ -19,25 +47,31 @@ services:
environment: environment:
PUID: 1000 PUID: 1000
PGID: 1000 PGID: 1000
CHEVERETO_MAX_UPLOAD_SIZE: 1G CHEVERETO_DB_HOST: chevereto-db
CHEVERETO_MAX_POST_SIZE: 1G
CHEVERETO_DB_NAME: chevereto
CHEVERETO_DB_PORT: 3306
CHEVERETO_DB_PASS: ${DB_PASSWORD}
CHEVERETO_DB_USER: chevereto 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: volumes:
- /etc/timezone:/etc/timezone:ro - /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime: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: networks:
proxy: proxy:
external: true external: true
volumes: # Documentation available at https://v4-docs.chevereto.com/#install
chevereto-data:
driver: local
# Documentation available at https://v4-docs.chevereto.com/#install