|
|
@ -17,6 +17,17 @@ docker build -t docker-osx .
|
|
|
|
|
|
|
|
|
|
|
|
docker run --privileged -v /tmp/.X11-unix:/tmp/.X11-unix docker-osx
|
|
|
|
docker run --privileged -v /tmp/.X11-unix:/tmp/.X11-unix docker-osx
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# press ctrl G if your mouse gets stuck
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Start the same container later (persistent disk)
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
# look at it
|
|
|
|
|
|
|
|
docker ps --all --filter "ancestor=docker-osx"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# boot my old one
|
|
|
|
|
|
|
|
docker start $(docker ps -q --all --filter "ancestor=docker-osx")
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
# Additional Boot Instructions
|
|
|
|
# Additional Boot Instructions
|
|
|
@ -36,6 +47,16 @@ docker run --privileged -v /tmp/.X11-unix:/tmp/.X11-unix docker-osx
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Wipe old images
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
# WARNING deletes all old images, but saves disk space if you make too many containers
|
|
|
|
|
|
|
|
docker system prune --all
|
|
|
|
|
|
|
|
docker image prune --all
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Instant OSX-KVM in a BOX!
|
|
|
|
# Instant OSX-KVM in a BOX!
|
|
|
|
This Dockerfile automates the installation of OSX-KVM inside a docker container.
|
|
|
|
This Dockerfile automates the installation of OSX-KVM inside a docker container.
|
|
|
|
|
|
|
|
|
|
|
|