You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
579 B

  1. // https://aka.ms/devcontainer.json
  2. {
  3. "name": "Docker Devcontainer",
  4. "image": "mcr.microsoft.com/vscode/devcontainers/base:0-ubuntu-22.04",
  5. "postCreateCommand": "docker buildx create --use",
  6. "forwardPorts": [],
  7. "remoteUser": "vscode",
  8. "features": {
  9. "homebrew": "latest",
  10. // you can view all of the features here: https://github.com/devcontainers/features/tree/main/src
  11. "ghcr.io/devcontainers/features/sshd:1": {
  12. "version": "latest"
  13. },
  14. "ghcr.io/devcontainers/features/docker-in-docker:1": {
  15. "version": "latest",
  16. "dockerDashComposeVersion":"v2"
  17. }
  18. }
  19. }