templates icon indicating copy to clipboard operation
templates copied to clipboard

Repository for Dev Container Templates that are managed by Dev Container spec maintainers. See https://github.com/devcontainers/template-starter to create your own!

Results 64 templates issues
Sort by recently updated
recently updated
newest added

It seems after `v0.16x.x` `Dockerfile`s are no longer included in the `.devcontainer` directory when using vscode's "Add devcontainer configuration files". These are critical for installing extra packages and customizing the...

question

devcontainer.json where using non-root and docker-compose.yml where using root

**devcontainer.json** is using **non-root** user and **docker-compose.yml** is using **root** user using the default configuration cause a error when loading the Codespace

Hi, When I try to create a Dev container with any template, it always stucks in "Replacing imageVariant with ..." step. Any idea what the problem is? Example templates: -...

When enabling dev container in project with `yamllint` enabled, `yamllint` reports errors on some of the dev container template files. Fixed yamllint error including: - warning missing document start "---"...

``` Running the postCreateCommand from devcontainer.json... [7386 ms] Start: Run in container: /bin/sh -c ./.devcontainer/postCreateCommand.sh The virtual environment found in /workspaces/peloton-virtual-coach/.venv seems to be broken. Recreating virtualenv peloton-virtual-coach in /workspaces/peloton-virtual-coach/.venv...

info-needed

`*-postgres` templates (ex. [ruby-rails-postgres](https://github.com/devcontainers/templates/blob/main/src/ruby-rails-postgres/.devcontainer/docker-compose.yml#L22)) use `postgres:latest` image which isn't the best default by 2 reasons: 1. Using `latest` tag will cause problems in a case we rebuild container after release...

Each time the container starts, all nuget packages need to be restored. The package and http caches should be persisted in volume mounts. ```json "mounts": [ "source=NuGetLocal,target=/home/vscode/.local,type=volume", "source=NuGet,target=/home/vscode/.nuget,type=volume" ], "postCreateCommand":...

From https://www.mongodb.com/docs/database-tools/installation/installation/#platform-support & https://github.com/devcontainers/templates/actions/runs/6564315875/job/17830523847?pr=213#step:6:396 mongoDB tools doesn't have support for debian 12 (bookworm). _Originally posted by @samruddhikhandale in https://github.com/devcontainers/templates/pull/213#discussion_r1364275075_

Currently most (all?) templates provide an entry for customizations similar to: ```json // Configure tool-specific properties. // "customizations": {}, ``` But new users to Codespaces and `devcontainers.json` specifically, do not...