{"id":19390842,"url":"https://github.com/tecnickcom/alldev","last_synced_at":"2025-04-24T00:31:36.978Z","repository":{"id":47458504,"uuid":"69056726","full_name":"tecnickcom/alldev","owner":"tecnickcom","description":"Dockerfile to build a generic development environment based on Ubuntu Linux","archived":false,"fork":false,"pushed_at":"2024-04-03T16:49:38.000Z","size":304,"stargazers_count":45,"open_issues_count":0,"forks_count":18,"subscribers_count":5,"default_branch":"main","last_synced_at":"2024-04-03T18:02:13.748Z","etag":null,"topics":["agent","container","development","docker","elastic","environment","gocd"],"latest_commit_sha":null,"homepage":null,"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/tecnickcom.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"custom":["https://www.paypal.com/cgi-bin/webscr?cmd=_donations\u0026currency_code=GBP\u0026business=paypal@tecnick.com\u0026item_name=donation%20for%20alldev%20project"]}},"created_at":"2016-09-23T20:01:22.000Z","updated_at":"2024-05-20T14:30:31.095Z","dependencies_parsed_at":"2024-05-20T14:30:30.105Z","dependency_job_id":"9606dec1-053e-4266-9cdf-74ad656461d1","html_url":"https://github.com/tecnickcom/alldev","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tecnickcom%2Falldev","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tecnickcom%2Falldev/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tecnickcom%2Falldev/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tecnickcom%2Falldev/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tecnickcom","download_url":"https://codeload.github.com/tecnickcom/alldev/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250539439,"owners_count":21447309,"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":["agent","container","development","docker","elastic","environment","gocd"],"created_at":"2024-11-10T10:23:34.570Z","updated_at":"2025-04-24T00:31:36.971Z","avatar_url":"https://github.com/tecnickcom.png","language":"Dockerfile","funding_links":["https://www.paypal.com/cgi-bin/webscr?cmd=_donations\u0026currency_code=GBP\u0026business=paypal@tecnick.com\u0026item_name=donation%20for%20alldev%20project"],"categories":[],"sub_categories":[],"readme":"# alldev\n\n*Dockerfile to build linux-based generic development environments*\n\n[![Donate via PayPal](https://img.shields.io/badge/donate-paypal-87ceeb.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations\u0026currency_code=GBP\u0026business=paypal@tecnick.com\u0026item_name=donation%20for%20alldev%20project)\n*Please consider supporting this project by making a donation via [PayPal](https://www.paypal.com/cgi-bin/webscr?cmd=_donations\u0026currency_code=GBP\u0026business=paypal@tecnick.com\u0026item_name=donation%20for%20alldev%20project)*\n\n* **category**    Docker\n* **author**      Nicola Asuni \u003cinfo@tecnick.com\u003e\n* **copyright**   2016-2025 Nicola Asuni - Tecnick.com LTD\n* **license**     MIT (see LICENSE)\n* **link**        https://github.com/tecnickcom/alldev\n* **docker**      https://hub.docker.com/r/tecnickcom/alldev/\n\n## Description\n\nSource configuration files to build Docker images with different development environment.\n\nThe generated Docker images are available at https://hub.docker.com/r/tecnickcom/\n\n\n## Requirements\n\nThis script requires Docker (https://www.docker.com/).\nTo install Docker in a debian or Ubuntu OS:\n```\nsudo apt-get install docker docker.io\n```\nAdd your user to the \"docker\" group:\n```\nsudo groupadd docker\nsudo gpasswd -a \u003cYOURUSER\u003e docker\nsudo service docker restart\n```\n\n\n\n## Getting started\n\nThis project include a Makefile that allows you to automate common operations.\nTo see all available options:\n```\nmake help\n```\nTo build an image:\n```\nmake build DIMG=\u003cIMAGE_DIR\u003e\n```\n\n\n## Useful Docker commands\n\nTo log into the newly created container:\n```\ndocker run -t -i tecnickcom/alldev /bin/bash\n```\n\nTo get the container ID:\n```\nCONTAINER_ID=`docker ps -a | grep tecnickcom/alldev | cut -c1-12`\n```\n\nTo delete the newly created docker container:\n```\ndocker rm -f $CONTAINER_ID\n```\n\nTo delete the docker image:\n```\ndocker rmi -f tecnickcom/alldev\n```\n\nTo delete all containers\n```\ndocker rm -f $(docker ps -a -q)\n```\n\nTo delete all images\n```\ndocker rmi -f $(docker images -q)\n```\n\n\n## Docker-in-Docker (DooD, dind)\n\nTo run Docker in docker in with the provided gocd-agent images,\nthe docker socket must be mounted:\n```\n/var/run/docker.sock:/var/run/docker.sock\n```\nand the container must run in privileged mode.\n\n\n## Developer(s) Contact\n\n* Nicola Asuni \u003cinfo@tecnick.com\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftecnickcom%2Falldev","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftecnickcom%2Falldev","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftecnickcom%2Falldev/lists"}