This is a docker container based on OS161-Docker, that integrate OS-161 with CodeServer (which is a web version of the famous VS-code) and os161vscode (which allow you to use debug, compile and run OS161 using the VS-code or CodeServer interface).
This allows you to run a complete development environment which works out of the box with just one simple command.
Install docker and run:
docker run -d -p 5000:5000 ghcr.io/cheina97/os161-codeserver:latest
and then open localhost:5000
in your browser.
List all your running containers with:
docker container ls
Delete a container with:
docker container rm <container_id>
If you want you can build your own image running:
docker build -t os161-codeserver .
(be prepared, it takes a long time).
- https://github.com/cheina97/os161vscode - Explain how to use OS161 tasks in vscode to simplify your job.
- https://docs.docker.com/engine/ - How to use docker's advanced features.
- https://github.com/jesseduffield/lazydocker - TUI tool to manage easily docker without CLI.