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"]