Contains everything you need to create a clean visual studio code development environment suitable for use in C++ training environment. Idea is that it can be installed on a local machine OR server
Go to file
Bart Beumer feaf31764d Initial version of a C++ development environment for training purposes. 2026-03-09 21:50:49 +01:00
docker-helper Initial version of a C++ development environment for training purposes. 2026-03-09 21:50:49 +01:00
example-executable Initial version of a C++ development environment for training purposes. 2026-03-09 21:50:49 +01:00
example-library Initial version of a C++ development environment for training purposes. 2026-03-09 21:50:49 +01:00
example-unittest Initial version of a C++ development environment for training purposes. 2026-03-09 21:50:49 +01:00
CMakeLists.txt Initial version of a C++ development environment for training purposes. 2026-03-09 21:50:49 +01:00
README.md Initial version of a C++ development environment for training purposes. 2026-03-09 21:50:49 +01:00
cpp-code-server-devenv.Dockerfile Initial version of a C++ development environment for training purposes. 2026-03-09 21:50:49 +01:00

README.md

Building the docker image

The following command can be used to create the docker container image: docker build -t cpp-devenv-in-docker -f cpp-code-server-devenv.Dockerfile .

To run the container there is only 2 things it really needs. A password, and a port on which code server will be reachable. The port that the image exposes is 8080, we map it to 7501 docker run -t -p 7501:8080 -e CODE_SERVER_PASSWD=YourPasswordHere cpp-devenv-in-docker