{"id":25609061,"url":"https://github.com/thaddeuskkr/dev-container","last_synced_at":"2026-02-28T03:06:17.183Z","repository":{"id":220544432,"uuid":"751922291","full_name":"thaddeuskkr/dev-container","owner":"thaddeuskkr","description":"A development container running the latest rolling release of Ubuntu.","archived":false,"fork":false,"pushed_at":"2025-07-16T03:56:30.000Z","size":169,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-30T11:53:57.591Z","etag":null,"topics":["dev","development-environment","ubuntu"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","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/thaddeuskkr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"thaddeuskkr","ko_fi":"thaddeuskkr"}},"created_at":"2024-02-02T16:12:33.000Z","updated_at":"2025-07-16T03:56:34.000Z","dependencies_parsed_at":"2024-02-02T17:31:31.451Z","dependency_job_id":"2a11dfbc-5319-409a-ab6d-424e3179b11a","html_url":"https://github.com/thaddeuskkr/dev-container","commit_stats":null,"previous_names":["thaddeuskkr/dev-container"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thaddeuskkr/dev-container","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thaddeuskkr%2Fdev-container","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thaddeuskkr%2Fdev-container/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thaddeuskkr%2Fdev-container/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thaddeuskkr%2Fdev-container/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thaddeuskkr","download_url":"https://codeload.github.com/thaddeuskkr/dev-container/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thaddeuskkr%2Fdev-container/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29923433,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T19:37:42.220Z","status":"online","status_checked_at":"2026-02-28T02:00:07.010Z","response_time":90,"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":["dev","development-environment","ubuntu"],"created_at":"2025-02-21T20:31:40.794Z","updated_at":"2026-02-28T03:06:17.178Z","avatar_url":"https://github.com/thaddeuskkr.png","language":"Dockerfile","funding_links":["https://github.com/sponsors/thaddeuskkr","https://ko-fi.com/thaddeuskkr"],"categories":[],"sub_categories":[],"readme":"# Development Container\n\n[![Workflow Status](https://github.com/thaddeuskkr/dev-container/actions/workflows/build.yml/badge.svg)](https://github.com/thaddeuskkr/dev-container/actions/workflows/build.yml)\n\nAn Ubuntu container running an SSH server, along with a Visual Studio Code Tunnel for all your remote development needs. Comes with multiple [preinstalled tools](#preinstalled-tools) to make your life easier.\n\n## Features\n\n- Passthrough of SSH and GPG keys, along with Git configurations\n- Latest Ubuntu rolling release (unminimized)\n- Built for multiple architectures\n- Daily scheduled builds\n- Slightly configurable\n\n## Preinstalled Tools\n\n- [Visual Studio Code CLI](https://code.visualstudio.com/docs/editor/command-line)\n- [Docker Engine](https://docs.docker.com/engine/)\n- [GitHub CLI](https://cli.github.com/)\n- [Swift](https://www.swift.org/) (latest)\n- [Bun](https://bun.sh/)\n- [Deno](https://deno.com)\n- [Node Version Manager (nvm)](https://github.com/nvm-sh/nvm) / [Node.js](https://nodejs.org/)\n- [`uv`](https://github.com/astral-sh/uv)\n- [`fastfetch`](https://github.com/fastfetch-cli/fastfetch)\n- [`cloc`](https://github.com/AlDanial/cloc)\n\n## Setup\n\n### Prerequisites\n\n- Docker\n- Docker Compose (optional, but recommended)\n\n### Docker Compose - recommended\n\n1. Clone this repository and enter its directory\n\n```sh\ngit clone https://github.com/thaddeuskkr/dev-container.git \u0026\u0026 cd dev-container\n```\n\n1. Start a container using the included `compose.yml` file\n\n```sh\ndocker compose up -d\n```\n\n### Docker - not recommended\n\n```sh\ndocker run -d \\\n--name dev-container \\\n--hostname dev \\\n--restart unless-stopped \\\n-e PASSWORD=\"YOUR_PASSWORD\" \\\n-e DOCKER_GROUP=\"$(getent group docker | cut -d: -f3)\" \\\n-e KEYS=\"$(cat ~/.ssh/authorized_keys)\" \\\n-e SSH_PASSWORD_AUTH=\"false\" \\\n-e SSH_ROOT_LOGIN=\"false\" \\\n-p 2222:22 \\\n-v ~/.gnupg:/volumes/.gnupg:ro \\\n-v ~/.gitconfig:/volumes/.gitconfig:ro \\\n-v ./workspaces:/workspaces \\\n-v ./data/:/data \\\n-v home:/home/ubuntu \\\n-v /var/run/docker.sock:/var/run/docker.sock \\\nghcr.io/thaddeuskkr/devc\n```\n\nThe Docker `run` command above tries to replicate the behaviour from the Docker Compose file - there might be some discrepancies.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthaddeuskkr%2Fdev-container","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthaddeuskkr%2Fdev-container","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthaddeuskkr%2Fdev-container/lists"}