{"id":15090841,"url":"https://github.com/ynlamy/vagrant-dockerlab","last_synced_at":"2026-02-19T16:01:52.888Z","repository":{"id":228225667,"uuid":"773412239","full_name":"ynlamy/vagrant-dockerlab","owner":"ynlamy","description":"A Docker CE development environment with Vagrant using VMware Workstation","archived":false,"fork":false,"pushed_at":"2025-12-21T09:45:08.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-23T00:59:59.311Z","etag":null,"topics":["dev","docker","vagrant"],"latest_commit_sha":null,"homepage":"","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/ynlamy.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-03-17T15:41:14.000Z","updated_at":"2025-12-21T09:45:12.000Z","dependencies_parsed_at":"2024-11-28T19:54:22.015Z","dependency_job_id":"a23e727b-ea63-41ec-9527-332bc6265436","html_url":"https://github.com/ynlamy/vagrant-dockerlab","commit_stats":{"total_commits":9,"total_committers":1,"mean_commits":9.0,"dds":0.0,"last_synced_commit":"e980b4ca31912298a547b5eaeb351dcfe292461a"},"previous_names":["ynlamy/vagrant-dockerlab"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ynlamy/vagrant-dockerlab","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ynlamy%2Fvagrant-dockerlab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ynlamy%2Fvagrant-dockerlab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ynlamy%2Fvagrant-dockerlab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ynlamy%2Fvagrant-dockerlab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ynlamy","download_url":"https://codeload.github.com/ynlamy/vagrant-dockerlab/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ynlamy%2Fvagrant-dockerlab/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29621892,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T13:04:20.082Z","status":"ssl_error","status_checked_at":"2026-02-19T13:03:33.775Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["dev","docker","vagrant"],"created_at":"2024-09-25T10:34:19.652Z","updated_at":"2026-02-19T16:01:52.883Z","avatar_url":"https://github.com/ynlamy.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vagrant-dockerlab\r\n\r\nA Docker CE development environment with [Vagrant](https://www.vagrantup.com/) using [VMware Workstation](https://www.vmware.com/) created by Yoann LAMY under the terms of the [GNU General Public License v3](http://www.gnu.org/licenses/gpl.html).\r\n\r\nThis Docker CE environment is based on a [Rocky Linux 9](https://rockylinux.org/) distribution and contains :\r\n* [Docker CE](https://www.docker.com/)\r\n* [Docker Registry](https://hub.docker.com/_/registry) is a private docker registry\r\n* [Docker Registry UI](https://github.com/Joxit/docker-registry-ui) is a user interface for your private docker registry\r\n* [Dive](https://github.com/wagoodman/dive) is a tool for exploring a Docker image  and discovering layer contents\r\n* [Hadolint](https://github.com/hadolint/hadolint) is a Dockerfile linter that helps you build best practice Docker images\r\n* [Lazydocker](https://github.com/jesseduffield/lazydocker) is a terminal UI for both docker and docker-compose\r\n* [Trivy](https://github.com/aquasecurity/trivy) is a security scanner\r\n\r\nThe timezone can be defined through the ``Vagrantfile``.\r\n\r\n### Usage\r\n\r\n- ``cd vagrant-dockerlab``\r\n- Edit ``Vagrantfile`` to customize settings :\r\n\r\n```\r\n  ...\r\n  # Provisioning script\r\n  config.vm.provision \"shell\", path: \"provisioning.sh\", env: {\r\n    \"TIMEZONE\" =\u003e \"Europe/Paris\", # Timezone to be used by the system\r\n    \"DOCKER_REGISTRY_UI_INSTALL\" =\u003e \"true\", # Install Docker Registry UI or not\r\n    \"DIVE_INSTALL\" =\u003e \"true\", # Install Dive or not\r\n    \"HADOLINT_INSTALL\" =\u003e \"true\", # Install Hadolint or not\r\n    \"LAZYDOCKER_INSTALL\" =\u003e \"true\", # Install Lazydocker or not\r\n    \"TRIVY_INSTALL\" =\u003e \"true\" # Install Trivy or not\r\n  }\r\n  ...\r\n```\r\n\r\nThis LAMP environment must be started using Vagrant.\r\n\r\n- ``vagrant up``\r\n\r\n```\r\n    ...\r\n    default: Disbaling SELinux...\r\n    default: Disabling firewalld...\r\n    default: Configuring Timezone...\r\n    default: Cleaning dnf cache...\r\n    default: Updating the system...\r\n    default: Installing Docker CE...\r\n    default: Installing Dive...\r\n    default: Installing Hadolint...\r\n    default: Installing Lazydocker...\r\n    default: Installing Trivy...\r\n    default: Configuring Docker CE...\r\n    default: Starting Docker CE...\r\n    default: Installing Docker Registry UI...\r\n    default:\r\n    default: Docker Lab is ready !\r\n    default: - Docker CE version : 29.1.3\r\n    default: - Docker Compose version : 5.0.0\r\n    default: - Dive version : 0.13.1\r\n    default: - Hadolint version : 2.14.0\r\n    default: - Lazydocker version : 0.24.3\r\n    default: - Trivy version : 0.68.2\r\n    default:\r\n    default: Informations :\r\n    default: - Guest IP address : xxx.xxx.xxx.xxx\r\n    default: - Docker Registry UI URL : http://127.0.0.1:8080/\r\n```\r\n\r\nAnd it must be destroy using Vagrant.\r\n\r\n- ``vagrant destroy``\r\n\r\n```\r\n    default: Are you sure you want to destroy the 'default' VM? [y/N] y\r\n    ...\r\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fynlamy%2Fvagrant-dockerlab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fynlamy%2Fvagrant-dockerlab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fynlamy%2Fvagrant-dockerlab/lists"}