Now Docker works, fixed docker-compose.yml.

Thanks to xet7 !

Related #2533
This commit is contained in:
Lauri Ojansivu 2019-07-25 01:16:52 +03:00
parent 156c8aa75b
commit 95698911f9

View file

@ -9,6 +9,8 @@ version: '2'
# https://github.com/wekan/wekan/wiki/Forgot-Password # https://github.com/wekan/wekan/wiki/Forgot-Password
#--------------------------------------------------------------------------------------------------------- #---------------------------------------------------------------------------------------------------------
# ==== Upgrading Wekan to new version ===== # ==== Upgrading Wekan to new version =====
# NOTE: MongoDB has changed from 3.x to 4.x, in that case you need backup/restore with --noIndexRestore
# see https://github.com/wekan/wekan/wiki/Backup
# 1) Stop Wekan: # 1) Stop Wekan:
# docker-compose stop # docker-compose stop
# 2) Download new version: # 2) Download new version:
@ -90,9 +92,9 @@ services:
wekandb: wekandb:
#------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------
# ==== MONGODB AND METEOR VERSION ==== # ==== MONGODB AND METEOR VERSION ====
# a) For Wekan Meteor 1.8.x version at meteor-1.8 branch, use mongo 4.x # a) For Wekan Meteor 1.8.x version at master branch, use mongo 4.x
image: mongo:4.0.10 image: mongo:4.0.10
# b) For Wekan Meteor 1.6.x version at master/devel/edge branches. # b) For Wekan Meteor 1.6.x version at devel branch.
# Only for Snap and Sandstorm while they are not upgraded yet to Meteor 1.8.x # Only for Snap and Sandstorm while they are not upgraded yet to Meteor 1.8.x
#image: mongo:3.2.21 #image: mongo:3.2.21
#------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------
@ -110,17 +112,18 @@ services:
wekan: wekan:
#------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------
# ==== MONGODB AND METEOR VERSION ==== # ==== MONGODB AND METEOR VERSION ====
# a) For Wekan Meteor 1.8.x version at meteor-1.8 branch, # NOTE: Quay is currently not updated, use Docker Hub image below c)
# a) For Wekan Meteor 1.8.x version at master branch,
# using https://quay.io/wekan/wekan automatic builds # using https://quay.io/wekan/wekan automatic builds
#image: quay.io/wekan/wekan:meteor-1.8 #image: quay.io/wekan/wekan:master
# b) For Wekan Meteor 1.6.x version at master/devel/edge branches. # b) For Wekan Meteor 1.6.x version at master/devel/edge branches.
# Only for Snap and Sandstorm while they are not upgraded yet to Meteor 1.8.x # Only for Snap and Sandstorm while they are not upgraded yet to Meteor 1.8.x
image: quay.io/wekan/wekan:master #image: quay.io/wekan/wekan:master
# c) Using specific Meteor 1.6.x version tag: # c) Using specific Meteor 1.6.x version tag:
# image: quay.io/wekan/wekan:v1.95 # image: quay.io/wekan/wekan:v1.95
# c) Using Docker Hub automatic builds https://hub.docker.com/r/wekanteam/wekan # c) Using Docker Hub automatic builds https://hub.docker.com/r/wekanteam/wekan
# image: wekanteam/wekan:meteor-1.8 image: wekanteam/wekan
# image: wekanteam/wekan:v1.95 # image: wekanteam/wekan:v2.99
#------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------
container_name: wekan-app container_name: wekan-app
restart: always restart: always