diff options
| author | sickcodes <[email protected]> | 2021-05-06 05:29:26 +0000 |
|---|---|---|
| committer | sickcodes <[email protected]> | 2021-05-06 05:29:26 +0000 |
| commit | 84e1682700a9dbebfb254d2b8deb9c1f0ef2a345 (patch) | |
| tree | b7daf80a6c6839d1badf31902cbb970544e204b0 /Dockerfile.auto | |
| parent | Update README.md with Big Sur 11.3 Fixes (diff) | |
| download | docker-osx-84e1682700a9dbebfb254d2b8deb9c1f0ef2a345.tar.xz docker-osx-84e1682700a9dbebfb254d2b8deb9c1f0ef2a345.zip | |
Prepare nakedvnc for hub.docker.com. Add `ENV BOOT_ARGS=` to supply additon boot arguments, for example, `vmx,rdtscp`. Add `ENV CPU=Penryn` to allow changes to the CPU emulation, for example, `Skylake-Client`
Diffstat (limited to 'Dockerfile.auto')
| -rw-r--r-- | Dockerfile.auto | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Dockerfile.auto b/Dockerfile.auto index 36b7058..01c913e 100644 --- a/Dockerfile.auto +++ b/Dockerfile.auto @@ -7,7 +7,7 @@ # # Title: Docker-OSX (Mac on Docker) # Author: Sick.Codes https://twitter.com/sickcodes -# Version: 4.3 +# Version: 4.4 # License: GPLv3+ # Repository: https://github.com/sickcodes/Docker-OSX # Website: https://sick.codes @@ -141,8 +141,14 @@ RUN if [[ "${COMPLETE}" ]]; then \ ENV ADDITIONAL_PORTS= +# add additional QEMU boot arguments +ENV BOOT_ARGS= + ENV BOOTDISK= +# edit the CPU that is beign emulated +ENV CPU=Penryn + ENV DISPLAY=:99 ENV HEADLESS=false |