aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 13 insertions, 3 deletions
diff --git a/README.md b/README.md
index 039c7cf..54079dd 100644
--- a/README.md
+++ b/README.md
@@ -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