{"id":15013875,"url":"https://github.com/betadots/pdc","last_synced_at":"2025-08-19T15:31:18.892Z","repository":{"id":180422665,"uuid":"665111698","full_name":"betadots/pdc","owner":"betadots","description":"Puppet Development Container","archived":false,"fork":false,"pushed_at":"2025-08-11T17:52:26.000Z","size":170,"stargazers_count":2,"open_issues_count":12,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-08-18T17:54:16.754Z","etag":null,"topics":["container","devlopment","puppet"],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/betadots.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2023-07-11T13:10:19.000Z","updated_at":"2025-02-21T09:28:11.000Z","dependencies_parsed_at":"2024-03-18T10:30:04.888Z","dependency_job_id":"bacbfa6b-852c-46e1-b6ab-08da03b59df1","html_url":"https://github.com/betadots/pdc","commit_stats":null,"previous_names":["betadots/pdc"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/betadots/pdc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/betadots%2Fpdc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/betadots%2Fpdc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/betadots%2Fpdc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/betadots%2Fpdc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/betadots","download_url":"https://codeload.github.com/betadots/pdc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/betadots%2Fpdc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271176212,"owners_count":24712351,"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","status":"online","status_checked_at":"2025-08-19T02:00:09.176Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["container","devlopment","puppet"],"created_at":"2024-09-24T19:44:53.139Z","updated_at":"2025-08-19T15:31:18.576Z","avatar_url":"https://github.com/betadots.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Puppet Development Container\n\n[![Maintained by betadots GmbH](https://img.shields.io/badge/Maintained%20by-betadots%20GmbH-blue.svg)](https://www.betadots.de)\n[![QA🚦](https://github.com/betadots/pdc/actions/workflows/ci.yaml/badge.svg)](https://github.com/betadots/pdc/actions/workflows/ci.yaml)\n[![Build and publish a 🛢️ container](https://github.com/betadots/pdc/actions/workflows/build_container.yml/badge.svg)](https://github.com/betadots/pdc/actions/workflows/build_container.yml)\n[![License](https://img.shields.io/github/license/betadots/pdc.svg)](https://github.com/betadots/pdc/blob/main/LICENSE)\n\nThis repository contains the code for the betadots Puppet Development Container (PDC).\n\n## ToC\n\n* [Usage](#usage)\n* [Version schema](#version-schema)\n  * [other tags](#other-tags)\n  * [Version updates](#version-updates)\n* [Changelog](#changelog)\n* [How to contribute](#how-to-contribute)\n* [How to release](#how-to-release)\n\n## Usage\n\n```shell\ndocker run -ti --rm ghcr.io:betadots/pdc:latest bash\n```\n\nRather than using bash directly, you have the option to mount the repository and run a script.\n\nIncluded fixed software versions, see: [build_versions.json](build_versions.json)\n\nFor any given container tag you can lookup the specific versions here: `https://github.com/betadots/pdc/blob/$TAG/build_versions.json`\n\n## Version schema\n\nThe version schema has the following layout:\n\n```text\nv\u003ccontainer.major\u003e.\u003ccontainer.minor\u003e.\u003ccontainer.patch\u003e-\u003cpuppet.major\u003e\n```\n\nExample usage:\n\n```shell\ndocker run -ti --rm ghcr.io:betadots/pdc:v1.0.1-8 bash\n```\n\n| Name | Description |\n| --- | --- |\n| container.major | Describes the major version of the base container (Ubunutu 22.04) or incompatible changes |\n| container.minor | Describes new features or refactoring with backward compatibility |\n| container.patch | Describes if minor changes or bugfixes have been implemented |\n| puppet.major | Describes the contained major Puppet version (7 or 8) |\n\n### other tags\n\n```text\nlatest\nlatest-\u003cpuppet.major\u003e\nmain-\u003cpuppet.major\u003e\n```\n\n`latest` should be self-explanatory. The `main` tags are built with every push to the main branch and can be regarded as development tags.\n\n### Version updates\n\nPDC will update its minor version to align with minor version updates of the tools it encapsulates. A major version update of any tool, the base container, or incompatible changes in the container build setup will trigger a major version update of PDC.\n\n## Changelog\n\nsee [CHANGELOG.md](CHANGELOG.md)\n\n## How to contribute\n\nsee [CONTRIBUTING.md](CONTRIBUTING.md)\n\n## How to release\n\nsee [RELEASE.md](RELEASE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbetadots%2Fpdc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbetadots%2Fpdc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbetadots%2Fpdc/lists"}