{"id":22189203,"url":"https://github.com/boringcodes/dev-runner","last_synced_at":"2025-03-24T20:19:34.683Z","repository":{"id":132809217,"uuid":"329185795","full_name":"boringcodes/dev-runner","owner":"boringcodes","description":"🍭 Boring Docker Local Development Runner - @boringcodes","archived":false,"fork":false,"pushed_at":"2021-06-14T07:20:27.000Z","size":113,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-22T05:33:03.156Z","etag":null,"topics":["alpine","boringcodes","docker","nodejs"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/boringcodes/dev-runner","language":"Dockerfile","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/boringcodes.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2021-01-13T03:44:26.000Z","updated_at":"2021-06-14T07:20:29.000Z","dependencies_parsed_at":"2023-06-26T21:20:34.897Z","dependency_job_id":null,"html_url":"https://github.com/boringcodes/dev-runner","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":"boringcodes/repo-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boringcodes%2Fdev-runner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boringcodes%2Fdev-runner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boringcodes%2Fdev-runner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boringcodes%2Fdev-runner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/boringcodes","download_url":"https://codeload.github.com/boringcodes/dev-runner/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245343981,"owners_count":20599867,"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":["alpine","boringcodes","docker","nodejs"],"created_at":"2024-12-02T11:16:47.893Z","updated_at":"2025-03-24T20:19:34.677Z","avatar_url":"https://github.com/boringcodes.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003edev-runner\u003c/h1\u003e\n  \u003cp\u003eBoring Docker Local Development Runner\u003c/p\u003e\n\n  \u003cdiv\u003e\n    \u003ca href=\"https://github.com/boringcodes/dev-runner/commits\" aria-label=\"Commitizen Friendly\"\u003e\n      \u003cimg src=\"https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=flat-square\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/boringcodes/dev-runner/actions\" aria-label=\"Build Status\"\u003e\n      \u003cimg src=\"https://img.shields.io/github/workflow/status/boringcodes/dev-runner/build-image?style=flat-square\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://hub.docker.com/r/boringcodes/dev-runner\" aria-label=\"Docker Image Version\"\u003e\n      \u003cimg src=\"https://img.shields.io/docker/v/boringcodes/dev-runner?color=brightgreen\u0026style=flat-square\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://hub.docker.com/r/boringcodes/dev-runner\" aria-label=\"Docker Image Downloads\"\u003e\n      \u003cimg src=\"https://img.shields.io/docker/pulls/boringcodes/dev-runner?color=brightgreen\u0026style=flat-square\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/boringcodes/dev-runner/blob/master/LICENSE\" aria-label=\"MIT License\"\u003e\n      \u003cimg src=\"https://img.shields.io/github/license/boringcodes/dev-runner?color=brightgreen\u0026style=flat-square\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/boringcodes\" aria-label=\"BoringCodes Verified\"\u003e\n      \u003cimg src=\"https://img.shields.io/badge/boringcodes-verified-brightgreen?style=flat-square\"\u003e\n    \u003c/a\u003e\n  \u003c/div\u003e\n\u003c/div\u003e\n\n## Features\n\n- [x] Alpine NodeJS (10, 12, 14, 15, 16)\n- [x] CURL for healthcheck (`curl --fail http://${HOST}:${PORT} || exit 1`)\n\n## Development\n\nBuild node.js alpine images\n\n```bash\n  docker build -t boringcodes/dev-runner:node-10-alpine node/10\n  docker build -t boringcodes/dev-runner:node-12-alpine node/12\n  docker build -t boringcodes/dev-runner:node-14-alpine node/14   # :node-lts-alpine\n  docker build -t boringcodes/dev-runner:node-15-alpine node/15\n  docker build -t boringcodes/dev-runner:node-16-alpine node/16   # :node-current-alpine\n```\n\n## Usage\n\nExample use of `boringcodes/dev-runner:node-current-alpine` to run your node.js app\n\n```bash\n  docker run --rm -d -v $PWD:/app -e HOST=localhost -e PORT=9000 -p 80:9000 boringcodes/dev-runner:node-current-alpine\n```\n\n## Contributing\n\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\nPlease make sure to update tests as appropriate.\n\n## Authors\n\n[BoringCodes](https://github.com/boringcodes)\n\n## License\n\n[MIT](https://github.com/boringcodes/dev-runner/blob/master/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboringcodes%2Fdev-runner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fboringcodes%2Fdev-runner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboringcodes%2Fdev-runner/lists"}