From d5120531e0634ce99131bbc8863d775f4daaa2c3 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Fri, 14 Jul 2017 02:44:49 +0300 Subject: [PATCH] Updated Install Wekan Docker in production (markdown) --- Install-Wekan-Docker-in-production.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Install-Wekan-Docker-in-production.md b/Install-Wekan-Docker-in-production.md index 1ccd0fc..f3d1db3 100644 --- a/Install-Wekan-Docker-in-production.md +++ b/Install-Wekan-Docker-in-production.md @@ -26,7 +26,7 @@ version: '2' services: wekandb: - image: mongo:3.2.13 + image: mongo:3.2.14 container_name: wekan-db command: mongod --smallfiles --oplogSize 128 networks: @@ -68,7 +68,7 @@ networks: **Note:** to start the wekan containers automatically on boot, use the `restart: always` policy on both containers. e.g. ``` wekan: - image: wekanteam/wekan:meteor-1.4 + image: wekanteam/wekan:latest restart: always ...