Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 666 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 666 Bytes


Set of development containers for using with GitHub codespaces.

devcontainer.json example:

{
  "name": "Bash",
  "build": {
    "dockerfile": "Dockerfile",
  },
  "settings": {
    "terminal.integrated.shell.linux": "/usr/bin/zsh"
  }
}

Dockerfile example:

FROM ghcr.io/essentialkaos/devcontainer:bash

WORKDIR /root

ENTRYPOINT ["/usr/bin/zsh"]

License

Apache License, Version 2.0