diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2016-01-08 12:18:17 +0100 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2016-01-08 12:18:17 +0100 |
commit | f68112be381f98d27476f1b0c9280ece1c198017 (patch) | |
tree | 8dbd9ab2c1d658c275317c63e5897f81bd423101 | |
parent | 1e8368dea53977292a8f49d3bef9032ab068627b (diff) | |
parent | cf7fd5313027f6d6bd5689e7812ea67cf5a47f4a (diff) | |
download | wekan-f68112be381f98d27476f1b0c9280ece1c198017.tar.gz wekan-f68112be381f98d27476f1b0c9280ece1c198017.tar.bz2 wekan-f68112be381f98d27476f1b0c9280ece1c198017.zip |
Merge pull request #478 from seschwar/devel
ports in docker-compose.yml must be an array
-rw-r--r-- | docker-compose.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 649b82cb..b9f02a48 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -16,7 +16,8 @@ wekandb: # - ./data/runtime/db:/data/db # - ./data/dump:/dump command: mongod --smallfiles --oplogSize 128 - ports: 27017 + ports: + - 27017 wekan: image: mquandalle/wekan |