From 03e4c6dcf56a613673ebbd70f045c2732075ba83 Mon Sep 17 00:00:00 2001 From: Dirk Meihoefer Date: Wed, 14 Apr 2021 14:15:45 +0200 Subject: [PATCH] Updated README.md. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 29df384..9f56742 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ The working directory inside the container defaults to `/compose` To execute the up command directly from the host system cd into the directory containing the docker-compose.yml and enter: ``` docker run --rm -t \ +--privileged \ -v $(pwd):/compose \ -v /var/run/docker.sock:/var/run/docker.sock \ -v /usr/bin/docker:/usr/bin/docker \ @@ -12,6 +13,7 @@ wagoautomation/docker-compose -f docker-compose.yml up For convinience you could create a permanent alias by adding following line in ~.profile in your host system: ``` alias docker-compose='docker run --rm -t \ +--privileged \ -v $(pwd):/compose \ -v /var/run/docker.sock:/var/run/docker.sock \ -v /usr/bin/docker:/usr/bin/docker \