diff options
| author | sickcodes <[email protected]> | 2020-09-26 06:26:38 +0000 |
|---|---|---|
| committer | sickcodes <[email protected]> | 2020-09-26 06:26:38 +0000 |
| commit | b710a8a0824d5f227ebceba18dd26b86df8e34b7 (patch) | |
| tree | 36fd59f85df79b0c57b47a7633b6d232f73564f6 | |
| parent | OSX-KVM folder (diff) | |
| download | docker-osx-b710a8a0824d5f227ebceba18dd26b86df8e34b7.tar.xz docker-osx-b710a8a0824d5f227ebceba18dd26b86df8e34b7.zip | |
v2.6 Update documentation
| -rw-r--r-- | Dockerfile | 2 | ||||
| -rw-r--r-- | README.md | 15 | ||||
| -rw-r--r-- | vnc-version/Dockerfile | 2 |
3 files changed, 12 insertions, 7 deletions
@@ -8,7 +8,7 @@ # Repo: https://github.com/sickcodes/Docker-OSX/ # Title: Mac on Docker (Docker-OSX) # Author: Sick.Codes https://sick.codes/ -# Version: 2.5 +# Version: 2.6 # License: GPLv3+ # # All credits for OSX-KVM and the rest at @Kholia's repo: https://github.com/kholia/osx-kvm @@ -1,8 +1,8 @@ # Docker-OSX ## [Follow @sickcodes on Twitter](https://twitter.com/sickcodes) -### V2.5 -# Features In Docker-OSX v2.5 +### V2.6 +# Features In Docker-OSX v2.6 - CI/CD weaponization thru vnc and xdotool - OSX-KVM - X11 Forwarding @@ -30,9 +30,9 @@ Pull requests, suggestions very welcome! ```bash -docker pull sickcodes/docker-osx +docker pull sickcodes/docker-osx:latest -docker run --device /dev/kvm --device /dev/snd -v /tmp/.X11-unix:/tmp/.X11-unix sickcodes/docker-osx +docker run --device /dev/kvm --device /dev/snd -v /tmp/.X11-unix:/tmp/.X11-unix sickcodes/docker-osx:latest # press ctrl G if your mouse gets stuck @@ -40,7 +40,12 @@ docker run --device /dev/kvm --device /dev/snd -v /tmp/.X11-unix:/tmp/.X11-unix # need more RAM and SSH on 0.0.0.0:50922? -docker run --device /dev/kvm --device /dev/snd -e RAM=4 -p 50922:10022 sickcodes/docker-osx:latest +docker run --device /dev/kvm \ +--device /dev/snd \ +-e RAM=4 \ +-p 50922:10022 \ +-v /tmp/.X11-unix:/tmp/.X11-unix \ +sickcodes/docker-osx:latest ssh fullname@localhost -p 50922 diff --git a/vnc-version/Dockerfile b/vnc-version/Dockerfile index 73a2b45..606a830 100644 --- a/vnc-version/Dockerfile +++ b/vnc-version/Dockerfile @@ -7,7 +7,7 @@ # # Title: Mac on Docker (Docker-OSX) [VNC EDITION] # Author: Sick.Codes https://sick.codes/ -# Version: 2.5 +# Version: 2.6 # License: GPLv3+ # # All credits for OSX-KVM and the rest at Kholia's repo: https://github.com/kholia/osx-kvm |