Update docker-compose.yml

Change docker-compose.yml to make docker compose down work properly.
This commit is contained in:
Julio 2020-07-02 16:36:15 +02:00 committed by GitHub
parent 0364d0d631
commit e70ac14204
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,8 @@
version: '3.1' version: '3.4'
services: services:
osx: osx:
container_name: docker-osx
build: build:
context: . context: .
args: args:
@ -10,9 +11,16 @@ services:
image: sickcodes/docker-osx image: sickcodes/docker-osx
privileged: true privileged: true
environment: environment:
DISPLAY: ${DISPLAY:-:0.0} - DISPLAY=${DISPLAY:-:0.0}
network_mode: "host" network_mode: "host"
cap_add: cap_add:
- ALL - ALL
volumes: volumes:
- ./tmp/.X11-unix:/tmp/.X11-unix - /tmp/.X11-unix:/tmp/.X11-unix
- /dev:/dev
- /lib/modules:/lib/modules
- docker-osx_data:/home
volumes:
docker-osx_data:
name: docker-osx_data