diff --git a/TEMPLATE-docker-compose copy.yml b/TEMPLATE-docker-compose copy.yml new file mode 100644 index 0000000..92d1eb0 --- /dev/null +++ b/TEMPLATE-docker-compose copy.yml @@ -0,0 +1,41 @@ +--- + +# +# +# Created by +# ↳ https://link.to.github + +services: + : + image: # creator/image_name:latest + container_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 \ No newline at end of file diff --git a/commits.md b/commits.md new file mode 100644 index 0000000..b7da3ef --- /dev/null +++ b/commits.md @@ -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 + +``` +(optional scope): +``` + +# 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 \ No newline at end of file diff --git a/emerald-theory/arcane-preview-version-1/arcane-preview.yml b/emerald-theory/arcane-preview-version-1/arcane-preview.yml new file mode 100644 index 0000000..6d61301 --- /dev/null +++ b/emerald-theory/arcane-preview-version-1/arcane-preview.yml @@ -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/ \ No newline at end of file diff --git a/emerald-theory/arcane-preview-version-1/arcane.env b/emerald-theory/arcane-preview-version-1/arcane.env new file mode 100644 index 0000000..b9bc6ae --- /dev/null +++ b/emerald-theory/arcane-preview-version-1/arcane.env @@ -0,0 +1,2 @@ +ENCRYPTION_KEY= +JWT_SECRET= \ No newline at end of file diff --git a/emerald-theory/arcane-registry.json b/emerald-theory/arcane-registry.json index a69e288..430f09d 100644 --- a/emerald-theory/arcane-registry.json +++ b/emerald-theory/arcane-registry.json @@ -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", diff --git a/emerald-theory/chevereto/chevereto.yml b/emerald-theory/chevereto/chevereto.yml index 6076b14..25ec59a 100644 --- a/emerald-theory/chevereto/chevereto.yml +++ b/emerald-theory/chevereto/chevereto.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 \ No newline at end of file