{"id":22909506,"url":"https://github.com/blueskyfish/dockbert","last_synced_at":"2026-05-06T18:31:34.976Z","repository":{"id":148073395,"uuid":"460122278","full_name":"blueskyfish/dockbert","owner":"blueskyfish","description":"A simple \"Traefik\" setup","archived":false,"fork":false,"pushed_at":"2024-05-22T07:54:13.000Z","size":93,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-27T10:42:39.337Z","etag":null,"topics":["docker","docker-compose","traefik2"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/blueskyfish.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-16T18:10:56.000Z","updated_at":"2024-05-22T07:54:13.000Z","dependencies_parsed_at":"2024-12-14T03:39:18.616Z","dependency_job_id":"695df101-e3cc-45fb-81dd-8e0d2d6049f1","html_url":"https://github.com/blueskyfish/dockbert","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/blueskyfish/dockbert","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blueskyfish%2Fdockbert","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blueskyfish%2Fdockbert/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blueskyfish%2Fdockbert/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blueskyfish%2Fdockbert/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blueskyfish","download_url":"https://codeload.github.com/blueskyfish/dockbert/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blueskyfish%2Fdockbert/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274609626,"owners_count":25316662,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-11T02:00:13.660Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","docker-compose","traefik2"],"created_at":"2024-12-14T03:39:15.231Z","updated_at":"2026-05-06T18:31:29.957Z","avatar_url":"https://github.com/blueskyfish.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Dockbert](logo.png)\n\n# Dockbert\n\n\u003e A simple [Traefik][traefik] Setup.\n\n## Table of Content\n\n- [Requirement](#requirement)\n- [Configuration](#configuration)\n- [Setup](#setup)\n- [Start and Stop](#start-and-stop)\n- [Basic Auth User](#basic-auth-user)\n- [Let's Encrypt](#lets-encrypt)\n- [Copyright](#copyright)\n- [License](#license)\n\n## Requirement\n\n- A linux server (e.g Debian or Ubunutu)\n- [Docker CE][docker] installed in the server\n- User are able to run docker commands\n- The Apache utils and program `htpasswd` for generates the basic auth\n\n## Configuration\n\nThe docker compose files is required some environment variables for start the Traefik service.\n\n- `DOCKBERT_DOMAIN` The domain for the dashboard\n- `DOCKBERT_CONTAINER_NAME` The container name. This is optional, default `dockbert-traefik`.\n- `DOCKBERT_USERS_FILE` The file with the user authorization (see section [Basic Auth User](#basic-auth-user))\n- `DOCKBERT_ACME_EMAIL` The email address for [Let's Encrypt][letsencrypt]\n- `DOCKBERT_ACME_PATH` The directory where saving the [Let's Encrypt][letsencrypt] the data\n\n\u003e The environment variables are setting in different kind:\n\u003e\n\u003e - Add a file `dockbert.env` in the user home directory\n\u003e - Set the environment variables in the bash or other initial RC files\n\n## Setup\n\n- Create network **dockbert-net**. `docker network create dockbert-net`\n- Define the Environment variables\n- Add bash script `dockbert` to the **PATH** for simplify start and stop the **dockbert traefik**\n\n## Start and Stop\n\nThe bash script `dockbert` is help to start and / or stop the **dockbert traefik**\n\n**Show the help / usage**\n\n```shell\n$ dockbert help\n```\n\n**Start the service**\n\n```shell\n$ dockbert start\n```\n\n**Stop the service**\n\n```shell\n$ dockbert stop\n```\n\n## Basic Auth User\n\n\u003e The dashboard is secured with BasicAuth. See [Traefik BasicAuth](https://doc.traefik.io/traefik/middlewares/http/basicauth/).\n\u003e To do this, create a file on the Docker host with apache `htpasswd`.\n\u003e\n\u003e The environment `DOCKBERT_USERS_FILE` is linked with this file\n\n**Example**\n\nThe user file `${HOME}/etc/users.passwd`.\n\n```shell\n$ htpasswd -cb ${HOME}/etc/users.passwd sarah password\n```\n\n## Let's Encrypt\n\n\u003e The configuration of the certificate directory is defined via the environment `DOCKBERT_ACME_PATH`.\n\u003e An email address is also required for this purpose via environment `DOCKBERT_ACME_EMAIL`.\n\n**Example**\n\nThe directory `${HOME}/etc/traefik/acme` contains the acme.json file\n\n```shell\n$ mkdir -p ${HOME}/etc/traefik/acme\n```\n\n## Copyright\n\n- Docker \u0026 Docker Compose: \u003chttps://www.docker.com/\u003e\n- Traefik: \u003chttps://doc.traefik.io/traefik/\u003e\n- Logo: \u003ca href=\"https://www.flaticon.com/free-icons/duck\" title=\"duck icons\" target=\"_blank\"\u003eDuck icons created by Pixel perfect - Flaticon\u003c/a\u003e\n\n## License\n\n```text\nCopyright 2022 - 2024 Blueskyfish\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n\n[docker]: https://www.docker.com/\n[traefik]: https://doc.traefik.io/traefik/\n[letsencrypt]: https://letsencrypt.org/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblueskyfish%2Fdockbert","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblueskyfish%2Fdockbert","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblueskyfish%2Fdockbert/lists"}