From eca605a59b17c9f3412033e13e5f9f19afdd7c47 Mon Sep 17 00:00:00 2001 From: Deniz Celebi <5246652+derDeno@users.noreply.github.com> Date: Wed, 4 Feb 2026 00:17:53 +0100 Subject: [PATCH 1/2] instructions update --- README.md | 41 ++++++++++++++++++++++++++++------------- 1 file changed, 28 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index f9b1d3c72..6da22a6de 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,33 @@

+ +## Custom Fork +This fork introduces a docker volume bind for storing and loading persistent diagrams from a volume. +It also introduces many customization functions like custom logo, name and colors. + +Other features: +- clean mode support with the url param clean=true +- single table embedding +- hiding social links +- better table color picker + +Mount a docker volume to `/data` + +In the mounted volume you will find a `config.json` file. This file allows you to perform custom configs. The possible options are: + +```json +{ + "defaultDiagramId": "default id of diagram - will be auto generated", + "appName": "App Name", + "appLogo": "relative Path to logo file", + "primaryColor": "#ffffff", + "hideSocialLinks": true +} +``` + +__ + ### 🎉 ChartDB ChartDB is a powerful, web-based database diagramming editor. @@ -168,16 +195,4 @@ Thank you for helping us make ChartDB better for everyone :heart:. ## License -ChartDB is licensed under the [GNU Affero General Public License v3.0](LICENSE) - - - -## Custom Fork -This fork introduces a docker volume bind for storing and loading persistent diagrams from a volume. -It also introduces many customization functions like custom logo, name and colors. - -Other features: -- clean mode support with the url param clean=true -- single table embedding -- hiding social links -- better table color picker \ No newline at end of file +ChartDB is licensed under the [GNU Affero General Public License v3.0](LICENSE) \ No newline at end of file From ce1fcd222fde1f72b38a83a9ec187611935e2b8a Mon Sep 17 00:00:00 2001 From: Deniz Celebi <5246652+derDeno@users.noreply.github.com> Date: Wed, 4 Feb 2026 00:19:34 +0100 Subject: [PATCH 2/2] build update --- .github/workflows/build.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 9d46490da..131023035 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -42,10 +42,12 @@ jobs: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.run_number }} - - name: Build and push (feat-* branches) - if: startsWith(github.ref, 'refs/heads/feat-') + - name: Build and push (feat/* branches) + if: startsWith(github.ref, 'refs/heads/feat/') uses: docker/build-push-action@v5 with: context: . push: true - tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:nightly \ No newline at end of file + tags: | + ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:nightly + ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.run_number }} \ No newline at end of file