diff options
Diffstat (limited to 'docker-compose.yml')
| -rw-r--r-- | docker-compose.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..cc996b0 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,18 @@ +version: '3.1' + +services: + osx: + build: + context: . + args: + - SIZE=200G + - VERSION=10.15.5 + image: sickcodes/docker-osx + privileged: true + environment: + DISPLAY: ${DISPLAY:-:0.0} + network_mode: "host" + cap_add: + - ALL + volumes: + - ./tmp/.X11-unix:/tmp/.X11-unix |