Browse Source

Fixed issue with ports in docker-compose.

KrisVos130 8 years ago
parent
commit
224944490d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docker-compose.yml

+ 2 - 2
docker-compose.yml

@@ -19,7 +19,7 @@ services:
   mongo:
     image: mongo
     ports:
-    - "27018:27018"
+    - "27017:27017"
     command: "--auth"
   mongoclient:
     image: mongoclient/mongoclient
@@ -31,4 +31,4 @@ services:
     volumes:
     - .redis:/data
     ports:
-    - "6371:6371"
+    - "6379:6379"