From e743e11df1f3788ea7bc2d6854860b831d7e7c83 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 6 Apr 2017 19:44:44 +0300 Subject: [PATCH] Update to Meteor 1.4 based Docker image --- ...all-Wekan-Docker-on-SUSE-Linux-Enterprise-Server-12-SP1.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Install-Wekan-Docker-on-SUSE-Linux-Enterprise-Server-12-SP1.md b/Install-Wekan-Docker-on-SUSE-Linux-Enterprise-Server-12-SP1.md index e3b423b..0976af9 100644 --- a/Install-Wekan-Docker-on-SUSE-Linux-Enterprise-Server-12-SP1.md +++ b/Install-Wekan-Docker-on-SUSE-Linux-Enterprise-Server-12-SP1.md @@ -54,9 +54,9 @@ reboot 7) As normal user (examples: ec2-user, virtual) (root works still too), install MongoDB and Wekan, you can change 8080 to be another port: ``` -docker run -d --restart=always --name wekan-db mongo:3.2.11 +docker run -d --restart=always --name wekan-db mongo:3.4.3 -docker run -d --restart=always --name wekan --link "wekan-db:db" -e "MONGO_URL=mongodb://db" -e "ROOT_URL=http://localhost:8080" -p 8080:80 mquandalle/wekan:latest +docker run -d --restart=always --name wekan --link "wekan-db:db" -e "MONGO_URL=mongodb://db" -e "ROOT_URL=http://localhost:8080" -p 8080:80 wekanteam/wekan:meteor-1.4 ``` 8) Now Wekan is available at http://ip-address:port , for example: http://192.168.100.50:8080 . Wekan starts at boot, and restarts on error conditions.