Nachos Compile & Run Environment in Docker
Find a file
2021-01-24 21:21:15 +08:00
mirrors update 2021-01-24 21:20:09 +08:00
scripts update 2021-01-24 21:20:09 +08:00
.gitignore fix .gitignore 2021-01-24 21:21:15 +08:00
Dockerfile update 2021-01-24 21:20:09 +08:00
LICENSE init 2021-01-24 17:30:37 +08:00
README.md update 2021-01-24 21:20:09 +08:00

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