Fixed a problem with docker compose permissions on Linux systems

pull/20/head
Piero Toffanin 2016-09-27 16:54:16 -04:00
rodzic 7b46271369
commit 0759c6d441
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -16,6 +16,7 @@ The quickest way to get started is by using Docker.
```
git clone https://github.com/OpenDroneMap/WebODM
cd WebODM
pip install docker-compose
docker-compose up
```

Wyświetl plik

@ -8,7 +8,7 @@ services:
webapp:
build: .
container_name: webapp
entrypoint: /bin/bash /webodm/wait-for-it.sh db:5432 -- /webodm/start.sh
entrypoint: /bin/bash -c "chmod +x /webodm/*.sh && /webodm/wait-for-it.sh db:5432 -- /webodm/start.sh"
volumes:
- .:/webodm
ports: