{"id":19805982,"url":"https://github.com/cycloidio/docker-concourse-dind","last_synced_at":"2026-01-28T15:31:14.974Z","repository":{"id":229064301,"uuid":"693532663","full_name":"cycloidio/docker-concourse-dind","owner":"cycloidio","description":null,"archived":false,"fork":false,"pushed_at":"2024-11-21T10:27:43.000Z","size":8,"stargazers_count":0,"open_issues_count":2,"forks_count":2,"subscribers_count":3,"default_branch":"develop","last_synced_at":"2025-04-03T01:41:27.190Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cycloidio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2023-09-19T08:06:08.000Z","updated_at":"2024-11-21T10:27:47.000Z","dependencies_parsed_at":"2025-01-11T06:13:07.257Z","dependency_job_id":null,"html_url":"https://github.com/cycloidio/docker-concourse-dind","commit_stats":{"total_commits":2,"total_committers":2,"mean_commits":1.0,"dds":0.5,"last_synced_commit":"4decdd092baba776a2bdae0b35195aeb661630d5"},"previous_names":["cycloidio/docker-concourse-dind"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cycloidio/docker-concourse-dind","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cycloidio%2Fdocker-concourse-dind","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cycloidio%2Fdocker-concourse-dind/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cycloidio%2Fdocker-concourse-dind/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cycloidio%2Fdocker-concourse-dind/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cycloidio","download_url":"https://codeload.github.com/cycloidio/docker-concourse-dind/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cycloidio%2Fdocker-concourse-dind/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28846340,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T15:15:36.453Z","status":"ssl_error","status_checked_at":"2026-01-28T15:15:13.020Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-12T09:06:05.489Z","updated_at":"2026-01-28T15:31:14.958Z","avatar_url":"https://github.com/cycloidio.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# concourse-dind\n\nBased on the official docker dind image, but using a modified version of the [concourse/docker-image-resource helper scripts](https://github.com/concourse/docker-image-resource/blob/master/assets/common.sh) to make dind working in Concourse.\n\n# Container startup explained\n\n* The container will check is cgroups sanitization is required (can be skipped with `SKIP_PRIVILEGED=true` ENVVAR).\n* The container will start docker using the official `dockerd-entrypoint.sh` script + additionals server args.\n\n## Configure\n\n| **Env var name**           | **Description**                                                                   |\n|----------------------------|-----------------------------------------------------------------------------------|\n| `SKIP_PRIVILEGED`          | Skip cgroups sanitization (default: false)                                        |\n| `LOG_FILE`                 | Docker daemon output log file within the container (default: /var/log/docker.log) |\n| `STARTUP_TIMEOUT`          | Maximum time the script will wait for docker to start in seconds (default: 120)   |\n| `MAX_CONCURRENT_DOWNLOADS` | To set the dockerd `--max-concurrent-downloads` arg (default: none)               |\n| `MAX_CONCURRENT_UPLOADS`   | To set the dockerd `--max-concurrent-uploads` arg  (default: none)                |\n| `INSECURE_REGISTRY`        | To set the dockerd `--insecure-registry` arg (default: none)                      |\n| `REGISTRY_MIRROR`          | To set the dockerd `--registry-mirror` arg (default: none)                        |\n\n## Usage in Concourse\n\n```yaml\njobs:\n  - name: my-job\n    plan:\n      - task: my-task\n        privileged: true\n        config:\n          platform: linux\n          image_resource:\n            type: registry-image\n            source:\n              repository: cycloid/concourse-dind\n              tag: latest\n          run:\n            path: concourse-dind-entrypoint.sh\n            args:\n              - 'bash'\n              - '-ec'\n              - |\n                # Docker is started by the concourse-dind-entrypoint.sh entrypoint script\n\n                # You can put here your code using docker\n\n                # You can load docker images downloaded in advance by Concourse using the `docker_load` function\n                source /opt/docker-utils.sh\n                docker_load image_database/image.tar\n                # or loading multiples images using GLOB\n                docker_load \"image_*/image.tar\"\n```\n\n# Build manually\n\n```bash\ndocker build -t cycloid/concourse-dind:manual .\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcycloidio%2Fdocker-concourse-dind","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcycloidio%2Fdocker-concourse-dind","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcycloidio%2Fdocker-concourse-dind/lists"}