diff options
| author | sickcodes <[email protected]> | 2020-08-29 17:27:25 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-08-29 17:27:25 +0000 |
| commit | 9d599d51e4a79dfbbc667d56cae4fa27bb875723 (patch) | |
| tree | c294ede2e243c52c908223baa4b50fa95fa1aeae /README.md | |
| parent | Merge pull request #75 from MrBenFTW/master (diff) | |
| parent | Update README.md (diff) | |
| download | docker-osx-9d599d51e4a79dfbbc667d56cae4fa27bb875723.tar.xz docker-osx-9d599d51e4a79dfbbc667d56cae4fa27bb875723.zip | |
Merge pull request #77 from MrBenFTW/master
Improvments
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 16 |
1 files changed, 13 insertions, 3 deletions
@@ -80,14 +80,24 @@ docker start abc123xyz567 # Click Disk Utility -# Erase the biggest disk - -# Partition that disk and subtract 1GB and press Apply +# Erase the biggest disk (around 200gb default), DO NOT MODIFY THE SMALLER DISKS. # Click Reinstall macOS ``` +## Creating images: +``` +# You can create an image of a already configured and setup container. This allows you to effectively duplicate a system. +# To do this, run the following commands + +$ docker ps --all #make note of your container id +$ docker commit containerID newImageName + +# To run this image do the following +$ docker run --privileged -e "DISPLAY=${DISPLAY:-:0.0}" -v /tmp/.X11-unix:/tmp/.X11-unix newImageName +``` + # Troubleshooting libgtk permissions denied error, thanks @raoulh + @arsham |