{"id":20504034,"url":"https://github.com/icinga/docker-icingadb","last_synced_at":"2025-05-09T07:31:19.738Z","repository":{"id":40353315,"uuid":"274611935","full_name":"Icinga/docker-icingadb","owner":"Icinga","description":null,"archived":true,"fork":false,"pushed_at":"2025-04-03T13:27:51.000Z","size":120,"stargazers_count":5,"open_issues_count":0,"forks_count":5,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-05-06T13:21:29.151Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Icinga.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":"2020-06-24T08:07:00.000Z","updated_at":"2025-04-03T13:28:43.000Z","dependencies_parsed_at":"2024-04-11T14:00:29.685Z","dependency_job_id":"5085a44f-4519-4512-a691-61f4db6e9537","html_url":"https://github.com/Icinga/docker-icingadb","commit_stats":{"total_commits":42,"total_committers":4,"mean_commits":10.5,"dds":0.5,"last_synced_commit":"b654a7c78aa10c9340a99ed7a53510d31d2740a6"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Icinga%2Fdocker-icingadb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Icinga%2Fdocker-icingadb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Icinga%2Fdocker-icingadb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Icinga%2Fdocker-icingadb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Icinga","download_url":"https://codeload.github.com/Icinga/docker-icingadb/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253209309,"owners_count":21871634,"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","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":[],"created_at":"2024-11-15T19:35:49.160Z","updated_at":"2025-05-09T07:31:19.723Z","avatar_url":"https://github.com/Icinga.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- Icinga DB Docker image | (c) 2020 Icinga GmbH | GPLv2+ --\u003e\n\n# Icinga DB - Docker image\n\n\u003e [!NOTE]\n\u003e With the release of Icinga DB [v1.3.0](https://github.com/Icinga/icingadb/releases/tag/v1.3.0), everything container-related was moved in the [main repository](https://github.com/Icinga/icingadb).\n\nThis image integrates [Icinga DB] into your [Docker] environment.\n\n## Usage\n\n```bash\ndocker network create icinga\n\ndocker run --rm -d \\\n\t--network icinga \\\n\t--name redis-icingadb \\\n\tredis\n\ndocker run --rm -d \\\n\t--network icinga \\\n\t--name mariadb-icingadb \\\n\t-e MYSQL_RANDOM_ROOT_PASSWORD=1 \\\n\t-e MYSQL_DATABASE=icingadb \\\n\t-e MYSQL_USER=icingadb \\\n\t-e MYSQL_PASSWORD=123456 \\\n\tmariadb\n\ndocker run -d \\\n\t--network icinga \\\n\t--restart always \\\n\t--name icingadb \\\n\t-e ICINGADB_REDIS_HOST=redis-icingadb \\\n\t-e ICINGADB_REDIS_PORT=6379 \\\n\t-e ICINGADB_REDIS_PASSWORD=123456 \\\n\t-e ICINGADB_DATABASE_HOST=mariadb-icingadb \\\n\t-e ICINGADB_DATABASE_PORT=3306 \\\n\t-e ICINGADB_DATABASE_DATABASE=icingadb \\\n\t-e ICINGADB_DATABASE_USER=icingadb \\\n\t-e ICINGADB_DATABASE_PASSWORD=123456 \\\n\ticinga/icingadb\n```\n\nThe container doesn't need any volumes and\ntakes the environment variables shown above.\n\nEach environment variable corresponds to a configuration option of Icinga DB.\nE.g. `ICINGADB_REDIS_HOST=redis-icingadb` means:\n\n```yaml\nredis:\n  host: redis-icingadb\n```\n\nConsult the [Icinga DB configuration documentation] on what options there are.\n\n### Connect via TLS\n\n```bash\ndocker run -d \\\n\t--network icinga \\\n\t--restart always \\\n\t--name icingadb \\\n\t-e ICINGADB_REDIS_HOST=redis-icingadb \\\n\t-e ICINGADB_REDIS_PORT=6379 \\\n\t-e ICINGADB_REDIS_PASSWORD=123456 \\\n\t-e ICINGADB_REDIS_TLS=true \\\n\t-e ICINGADB_REDIS_CERT='[PEM-encoded content or path to a file (in a volume)]' \\\n\t-e ICINGADB_REDIS_KEY='[PEM-encoded content or path to a file (in a volume)]' \\\n\t-e ICINGADB_REDIS_CA='[PEM-encoded content or path to a file (in a volume)]' \\\n\t-e ICINGADB_DATABASE_HOST=mariadb-icingadb \\\n\t-e ICINGADB_DATABASE_PORT=3306 \\\n\t-e ICINGADB_DATABASE_DATABASE=icingadb \\\n\t-e ICINGADB_DATABASE_USER=icingadb \\\n\t-e ICINGADB_DATABASE_PASSWORD=123456 \\\n\t-e ICINGADB_DATABASE_TLS=true \\\n\t-e ICINGADB_DATABASE_CERT='[PEM-encoded content or path to a file (in a volume)]' \\\n\t-e ICINGADB_DATABASE_KEY='[PEM-encoded content or path to a file (in a volume)]' \\\n\t-e ICINGADB_DATABASE_CA='[PEM-encoded content or path to a file (in a volume)]' \\\n\ticinga/icingadb\n```\n\n## Build it yourself\n\n```bash\ngit clone https://github.com/Icinga/icingadb.git\n#pushd icingadb\n#git checkout v1.0.0\n#popd\n\n./build.bash ./icingadb\n```\n\n[Icinga DB]: https://github.com/Icinga/icingadb\n[Docker]: https://www.docker.com\n[Icinga DB configuration documentation]: https://icinga.com/docs/icingadb/latest/doc/03-Configuration/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ficinga%2Fdocker-icingadb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ficinga%2Fdocker-icingadb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ficinga%2Fdocker-icingadb/lists"}