{"id":22785614,"url":"https://github.com/skriptfabrik/devcontainer-features","last_synced_at":"2026-03-02T03:36:12.645Z","repository":{"id":233707494,"uuid":"722891066","full_name":"skriptfabrik/devcontainer-features","owner":"skriptfabrik","description":"A collection of custom dev container features","archived":false,"fork":false,"pushed_at":"2025-11-13T11:06:42.000Z","size":43,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-11-13T13:08:19.486Z","etag":null,"topics":["devcontainer-features"],"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/skriptfabrik.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-11-24T07:41:59.000Z","updated_at":"2025-11-13T11:06:26.000Z","dependencies_parsed_at":"2024-04-17T06:55:01.399Z","dependency_job_id":"1c498412-e2df-489b-a6c0-fc827ce46806","html_url":"https://github.com/skriptfabrik/devcontainer-features","commit_stats":null,"previous_names":["skriptfabrik/devcontainer-features"],"tags_count":16,"template":false,"template_full_name":"devcontainers/feature-starter","purl":"pkg:github/skriptfabrik/devcontainer-features","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skriptfabrik%2Fdevcontainer-features","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skriptfabrik%2Fdevcontainer-features/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skriptfabrik%2Fdevcontainer-features/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skriptfabrik%2Fdevcontainer-features/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/skriptfabrik","download_url":"https://codeload.github.com/skriptfabrik/devcontainer-features/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skriptfabrik%2Fdevcontainer-features/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29991918,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T01:47:34.672Z","status":"online","status_checked_at":"2026-03-02T02:00:07.342Z","response_time":60,"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":["devcontainer-features"],"created_at":"2024-12-11T23:06:56.838Z","updated_at":"2026-03-02T03:36:12.641Z","avatar_url":"https://github.com/skriptfabrik.png","language":"Shell","readme":"# Dev Container Features\n\n\u003e This repo provides [dev container Features](https://containers.dev/implementors/features/), hosted for free on GitHub Container Registry.\n\n## Contents\n\nThis repository contains a _collection_ of dev container Features.\nPlease take a closer look at the detailed instructions for the individual features:\n\n- [GitLab CLI](src/gitlab-cli)\n- [Hetzner Cloud CLI](src/hcloud-cli)\n- [Infisical CLI](src/infisical-cli)\n- [Mailpit](src/mailpit)\n- [Terraform State management using Git](src/terraform-backend-git)\n- [yamlfix](src/yamlfix)\n\n## Repo and Feature Structure\n\nSimilar to the [`devcontainers/features`](https://github.com/devcontainers/features) repo, this repository has a `src` folder.\nEach Feature has its own sub-folder, containing at least a `devcontainer-feature.json` and an entrypoint script `install.sh`. \n\n```\n├── src\n│   ├── gitlab-cli\n│   │   ├── devcontainer-feature.json\n│   │   └── install.sh\n│   ├── hcloud-cli\n│   │   ├── devcontainer-feature.json\n│   │   └── install.sh\n│   ├── infisical-cli\n│   │   ├── devcontainer-feature.json\n│   │   └── install.sh\n│   ├── mailpit\n│   │   ├── devcontainer-feature.json\n│   │   └── install.sh\n│   ├── terraform-backend-git\n│   │   ├── devcontainer-feature.json\n│   │   └── install.sh\n│   ├── yamlfix\n│   │   ├── devcontainer-feature.json\n│   │   └── install.sh\n|   ├── ...\n│   │   ├── devcontainer-feature.json\n│   │   └── install.sh\n├── test\n│   ├── __global\n│   │   ├── all_the_clis.sh\n│   │   └── scenarios.json\n│   ├── gitlab-cli\n│   │   ├── scenarios.json\n│   │   └── test.sh\n│   ├── hcloud-cli\n│   │   ├── scenarios.json\n│   │   └── test.sh\n│   ├── infisical-cli\n│   │   ├── scenarios.json\n│   │   └── test.sh\n│   ├── mailpit\n│   │   ├── scenarios.json\n│   │   └── test.sh\n│   ├── terraform-backend-git\n│   │   ├── scenarios.json\n│   │   └── test.sh\n│   ├── yamlfix\n│   │   ├── scenarios.json\n│   │   └── test.sh\n|   ├── ...\n│   │   └── test.sh\n...\n```\n\n- [`src`](src) - A collection of subfolders, each declaring a Feature. Each subfolder contains at least a\n  `devcontainer-feature.json` and an `install.sh` script.\n- [`test`](test) - Mirroring `src`, a folder-per-feature with at least a `test.sh` script. The\n  [devcontainer CLI](https://github.com/devcontainers/cli) will execute\n  [these tests in CI](https://github.com/skriptfabrik/devcontainer-features/tree/main/.github/workflows/test.yaml).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskriptfabrik%2Fdevcontainer-features","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskriptfabrik%2Fdevcontainer-features","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskriptfabrik%2Fdevcontainer-features/lists"}