From 285fe30cc42fa2240620636f2fa663a6b751980e Mon Sep 17 00:00:00 2001 From: fxequals Date: Mon, 18 Aug 2025 20:06:01 -0400 Subject: [PATCH 1/7] updated chevereto compose --- TEMPLATE-docker-compose copy.yml | 41 +++++++++++++++++++++++ emerald-theory/chevereto/chevereto.yml | 45 ++++++++++++++++++++------ 2 files changed, 77 insertions(+), 9 deletions(-) create mode 100644 TEMPLATE-docker-compose copy.yml 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/emerald-theory/chevereto/chevereto.yml b/emerald-theory/chevereto/chevereto.yml index 6076b14..1e1c669 100644 --- a/emerald-theory/chevereto/chevereto.yml +++ b/emerald-theory/chevereto/chevereto.yml @@ -6,9 +6,9 @@ # ↳ 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 networks: @@ -30,14 +30,41 @@ services: volumes: - /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro - - chevereto-data:/var/www/html/images + - /home/fxequals/docker/chevereto/database:/var/www/html/images + + chevereto-server: + image: mariadb:jammy + container_name: chevereto-db + restart: unless-stopped + + networks: + - proxy +# ports: +# - 80:80 + + environment: + PUID: 1000 + PGID: 1000 + CHEVERETO_DB_HOST: database + CHEVERETO_DB_USER: chevereto + CHEVERETO_DB_PASS: user_database_password + CHEVERETO_DB_PORT: 3306 + CHEVERETO_DB_NAME: chevereto + CHEVERETO_HOSTNAME: 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 + - /home/fxequals/docker/chevereto/storage:/var/www/html/images/ + - /home/fxequals/docker/chevereto/app:/var/www/html/ 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 From a687da5510721ea93c68334afba6ff6ce1af38be Mon Sep 17 00:00:00 2001 From: fxequals Date: Mon, 18 Aug 2025 20:13:55 -0400 Subject: [PATCH 2/7] fixed server container name --- emerald-theory/chevereto/chevereto.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emerald-theory/chevereto/chevereto.yml b/emerald-theory/chevereto/chevereto.yml index 1e1c669..81d2375 100644 --- a/emerald-theory/chevereto/chevereto.yml +++ b/emerald-theory/chevereto/chevereto.yml @@ -34,7 +34,7 @@ services: chevereto-server: image: mariadb:jammy - container_name: chevereto-db + container_name: chevereto-server restart: unless-stopped networks: From 4b91df7f9e00d62f783f7b3cc96d22246d0f9d59 Mon Sep 17 00:00:00 2001 From: fxequals Date: Mon, 18 Aug 2025 21:03:34 -0400 Subject: [PATCH 3/7] working version --- emerald-theory/chevereto/chevereto.yml | 37 +++++++++++++++----------- 1 file changed, 22 insertions(+), 15 deletions(-) diff --git a/emerald-theory/chevereto/chevereto.yml b/emerald-theory/chevereto/chevereto.yml index 81d2375..25ec59a 100644 --- a/emerald-theory/chevereto/chevereto.yml +++ b/emerald-theory/chevereto/chevereto.yml @@ -10,7 +10,12 @@ services: 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: @@ -19,21 +24,18 @@ 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_USER: chevereto - CHEVERETO_DB_HOST: database + 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 - - /home/fxequals/docker/chevereto/database:/var/www/html/images + - chevereto-database:/var/lib/mysql chevereto-server: - image: mariadb:jammy + image: chevereto/chevereto:latest container_name: chevereto-server restart: unless-stopped @@ -45,12 +47,12 @@ services: environment: PUID: 1000 PGID: 1000 - CHEVERETO_DB_HOST: database + CHEVERETO_DB_HOST: chevereto-db CHEVERETO_DB_USER: chevereto - CHEVERETO_DB_PASS: user_database_password + CHEVERETO_DB_PASS: ${DB_PASSWORD} CHEVERETO_DB_PORT: 3306 CHEVERETO_DB_NAME: chevereto - CHEVERETO_HOSTNAME: ignitedinspirations.net + CHEVERETO_HOSTNAME: photos.ignitedinspirations.net CHEVERETO_HOSTNAME_PATH: / CHEVERETO_HTTPS: 1 CHEVERETO_MAX_POST_SIZE: 1G @@ -60,8 +62,13 @@ services: volumes: - /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro - - /home/fxequals/docker/chevereto/storage:/var/www/html/images/ - - /home/fxequals/docker/chevereto/app:/var/www/html/ + - chevereto-storage:/var/www/html/images/ + - chevereto-app:/var/www/html/ + +volumes: + database: + storage: + app: networks: proxy: From 9044a9fea0022c70e98a05af64e5212131d113f4 Mon Sep 17 00:00:00 2001 From: fxequals Date: Tue, 19 Aug 2025 02:46:19 -0400 Subject: [PATCH 4/7] add: arcane-preview --- .../arcane-preview.yml | 34 +++++++++++++++++++ .../arcane-preview-version-1/arcane.env | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 emerald-theory/arcane-preview-version-1/arcane-preview.yml create mode 100644 emerald-theory/arcane-preview-version-1/arcane.env 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..38c66af --- /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 From 07f212b6b5facbe5f9a8ba807a0b80046f17f13e Mon Sep 17 00:00:00 2001 From: fxequals Date: Tue, 19 Aug 2025 02:54:17 -0400 Subject: [PATCH 5/7] fix: comment out ports --- emerald-theory/arcane-preview-version-1/arcane-preview.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emerald-theory/arcane-preview-version-1/arcane-preview.yml b/emerald-theory/arcane-preview-version-1/arcane-preview.yml index 38c66af..6d61301 100644 --- a/emerald-theory/arcane-preview-version-1/arcane-preview.yml +++ b/emerald-theory/arcane-preview-version-1/arcane-preview.yml @@ -9,7 +9,7 @@ services: networks: - proxy - ports: +# ports: # - 3552:3552 environment: From d051021dfc7f0ddfea69eb89f0dc28dc645e7bda Mon Sep 17 00:00:00 2001 From: fxequals Date: Tue, 19 Aug 2025 03:03:36 -0400 Subject: [PATCH 6/7] add: arcane-preview --- emerald-theory/arcane-registry.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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", From ebdd8329c7034582aaa51c311a97818df9c48fd4 Mon Sep 17 00:00:00 2001 From: fxequals Date: Tue, 19 Aug 2025 03:34:38 -0400 Subject: [PATCH 7/7] docs: added Covential Commits --- commits.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 commits.md 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