summaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-12-05 10:00:07 +0200
committerLauri Ojansivu <x@xet7.org>2019-12-05 10:00:07 +0200
commit467a3be8509d4a45cd26da7f199b4dbd049086fd (patch)
tree2b00c0028177662938325aeeec97d52db38646a2 /docker-compose.yml
parent1b12d3f04f0ed44558312ce4528f303100f795e9 (diff)
downloadwekan-467a3be8509d4a45cd26da7f199b4dbd049086fd.tar.gz
wekan-467a3be8509d4a45cd26da7f199b4dbd049086fd.tar.bz2
wekan-467a3be8509d4a45cd26da7f199b4dbd049086fd.zip
Update to Meteor 1.9-beta.4, Node.js 12.13.1 and MongoDB 4.2.1.
Remove MongoDB option --smallfiles that is not supported in MongoDB 4.2.1. Add MongoDB option --quiet to docker-compose.yml. Update snap fibers to 4.0.1. Thanks to xet7 !
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml28
1 files changed, 14 insertions, 14 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
index a0e641c1..1f7b4c37 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -1,4 +1,4 @@
-version: '2'
+version: '3.7'
# Note: Do not add single quotes '' to variables. Having spaces still works without quotes where required.
#---------------------------------------------------------------------------------------------------------
@@ -93,14 +93,14 @@ services:
#-------------------------------------------------------------------------------------
# ==== MONGODB AND METEOR VERSION ====
# a) For Wekan Meteor 1.8.x version at master branch, use mongo 4.x
- image: mongo:4.0.12
+ image: mongo:4.2.1
# 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
#image: mongo:3.2.21
#-------------------------------------------------------------------------------------
container_name: wekan-db
restart: always
- command: mongod --smallfiles --oplogSize 128
+ command: mongod --oplogSize 128 --quiet
networks:
- wekan-tier
expose:
@@ -129,17 +129,17 @@ services:
#-------------------------------------------------------------------------------------
# ==== BUILD wekan-app DOCKER CONTAINER FROM SOURCE, if you uncomment these ====
# ==== and use commands: docker-compose up -d --build
- #build:
- # context: .
- # dockerfile: Dockerfile
- # args:
- # - NODE_VERSION=${NODE_VERSION}
- # - METEOR_RELEASE=${METEOR_RELEASE}
- # - NPM_VERSION=${NPM_VERSION}
- # - ARCHITECTURE=${ARCHITECTURE}
- # - SRC_PATH=${SRC_PATH}
- # - METEOR_EDGE=${METEOR_EDGE}
- # - USE_EDGE=${USE_EDGE}
+ build:
+ context: .
+ dockerfile: Dockerfile
+ args:
+ - NODE_VERSION=${NODE_VERSION}
+ - METEOR_RELEASE=${METEOR_RELEASE}
+ - NPM_VERSION=${NPM_VERSION}
+ - ARCHITECTURE=${ARCHITECTURE}
+ - SRC_PATH=${SRC_PATH}
+ - METEOR_EDGE=${METEOR_EDGE}
+ - USE_EDGE=${USE_EDGE}
#-------------------------------------------------------------------------------------
ports:
# Docker outsideport:insideport. Do not add anything extra here.