Skip to content

Latest commit

 

History

History
executable file
·
42 lines (27 loc) · 1.41 KB

README.md

File metadata and controls

executable file
·
42 lines (27 loc) · 1.41 KB

devcontainer

License

Tags

Last commit

Usage

This is my personal VSCode devcontainer. It contains some specific user settings. Thus I'd appreciate not using my image+Dockerfile without respective adjustments.

FAQ / Troubleshooting

Weird experiences from friends and others, which are using this repo, are mentioned below.

Syntax error

These devcontainer is used with bash. Check how sh is symlinked, e.g. via

ls -1GF --color=auto -lh -a $(which sh)

For instance, Debian uses dash instead of bash per default. In this case, you can change the used shell in your terminal. However, probably the best option is changing the default system shell with chsh.

homebrew on macOS

Add following snippet to src/home/.bash_profile

eval "$(/opt/homebrew/bin/brew shellenv)"
export PATH="/opt/homebrew/opt/openjdk/bin:$PATH"
export CPPFLAGS="-I/opt/homebrew/opt/openjdk/include"

bindkey -e