{"id":24448844,"url":"https://github.com/lorenz/dockpipe","last_synced_at":"2026-04-28T14:33:21.646Z","repository":{"id":84218676,"uuid":"46351043","full_name":"lorenz/dockpipe","owner":"lorenz","description":"A docker build pipeline with subcontainers","archived":false,"fork":false,"pushed_at":"2017-05-22T14:12:39.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-01T14:36:35.307Z","etag":null,"topics":[],"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/lorenz.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":"2015-11-17T14:07:53.000Z","updated_at":"2017-05-22T14:12:40.000Z","dependencies_parsed_at":"2023-05-24T00:45:33.590Z","dependency_job_id":null,"html_url":"https://github.com/lorenz/dockpipe","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/lorenz/dockpipe","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lorenz%2Fdockpipe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lorenz%2Fdockpipe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lorenz%2Fdockpipe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lorenz%2Fdockpipe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lorenz","download_url":"https://codeload.github.com/lorenz/dockpipe/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lorenz%2Fdockpipe/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32385100,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T11:25:28.583Z","status":"ssl_error","status_checked_at":"2026-04-28T11:25:05.435Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":"2025-01-21T00:34:55.672Z","updated_at":"2026-04-28T14:33:21.626Z","avatar_url":"https://github.com/lorenz.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dockpipe\n*A docker build pipeline with subcontainers*\n\n**IMPORTANT: Please use the new Docker Multistage builds (https://docs.docker.com/engine/userguide/eng-image/multistage-build/#use-multi-stage-builds) instead of this, they are better integrated into Docker than Dockpipe could ever be.**\n\n## Example\n```\n# Base image for the resulting image\nFROM ubuntu:14.04\n\n# Build a Rust project using a base image with a Rust compiler\nSUB schickling/rust\nADD api /source\nRUN cargo build --release\nRETURN /source/target/release/api /app/server\n\n# Compile and minify a frontend project with Node\nSUB node:5\nWORKDIR /source\nADD package.json /source/package.json\nRUN npm install\nADD . /source\nRUN npm run build\nRETURN /source/dist /app/dist\n\n# Command to start the server\nCMD [\"/app/server\"]\n```\n\n## Dockerfile extensions\nDockpipe adds two commands to Dockerfiles: `SUB` and `RETURN`. The syntax is:\n\n`SUB image_name:tag`\n\n`RETURN /path/in/sub_container /path/in/parent_container`\n\nThe first one starts a new subcontainer, the second one ends one and returns data to its parent.\n\n## Command syntax\n`./dockpipe.sh TAG DIRECTORY`\n\nDockpipe pushes the resulting image to a registry if the tag contains one. This facilitates usage when using Dockpipe in a CI.\n\n## Project status\nThe current version of Dockpipe is written in Bash and therefore relatively unstable. I'm working on a Rust version but that'll take some time because there is currently no good Docker client for Rust.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Florenz%2Fdockpipe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Florenz%2Fdockpipe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Florenz%2Fdockpipe/lists"}