Nachos Compile & Run Environment in Docker
| mirrors | ||
| scripts | ||
| .gitignore | ||
| Dockerfile | ||
| LICENSE | ||
| README.md | ||
Docker-Nachos
Nachos Compile & Run Environment in Docker, based on i386/ubuntu:bionic.
Build
Basic
docker buildx build -t nachos .
Mirror
docker buildx build -t nachos --build-arg DOCKER_MIRROR=true .
Shell
Bash shell (default)
docker buildx build -t nachos --build-arg DOCKER_SHELL=bash .
Fish shell
docker buildx build -t nachos --build-arg DOCKER_SHELL=fish .
Zsh shell (with oh-my-zsh)
docker buildx build -t nachos --build-arg DOCKER_SHELL=zsh .
Upstream
docker buildx build -t nachos --build-arg UPSTREAM_IMAGE=i386/ubuntu:latest .
Run
docker run --rm -v $(pwd):/workspace -it nachos