Browse Source

versions

merge-requests/93/head
Steven Foerster 4 years ago
parent
commit
01575e06f1
  1. 4
      extra/guacamole.yml
  2. 4
      extra/rocketchat.yml

4
extra/guacamole.yml

@ -5,7 +5,7 @@ services:
# guacd # guacd
guacd: guacd:
container_name: mistborn_production_guacd container_name: mistborn_production_guacd
image: guacamole/guacd:latest image: guacamole/guacd:1.3.0
networks: networks:
guacnetwork: guacnetwork:
restart: unless-stopped restart: unless-stopped
@ -53,7 +53,7 @@ services:
#GUACAMOLE_HOME: /config #GUACAMOLE_HOME: /config
env_file: env_file:
- ../.envs/.production/.guacamole - ../.envs/.production/.guacamole
image: guacamole/guacamole:latest image: guacamole/guacamole:1.3.0
links: links:
- guacd - guacd
networks: networks:

4
extra/rocketchat.yml

@ -31,7 +31,7 @@ services:
# - 3000:3000 # - 3000:3000
mongo: mongo:
image: mongo:4.4.6 image: mongo:4.0
container_name: mistborn_production_rocketchat_mongo container_name: mistborn_production_rocketchat_mongo
restart: unless-stopped restart: unless-stopped
volumes: volumes:
@ -42,7 +42,7 @@ services:
# this container's job is just run the command to initialize the replica set. # this container's job is just run the command to initialize the replica set.
# it will run the command and remove himself (it will not stay running) # it will run the command and remove himself (it will not stay running)
mongo-init-replica: mongo-init-replica:
image: mongo:4.4.6 image: mongo
command: 'bash -c "for i in `seq 1 30`; do mongo mongo/rocketchat --eval \"rs.initiate({ _id: ''rs0'', members: [ { _id: 0, host: ''localhost:27017'' } ]})\" && s=$$? && break || s=$$?; echo \"Tried $$i times. Waiting 5 secs...\"; sleep 5; done; (exit $$s)"' command: 'bash -c "for i in `seq 1 30`; do mongo mongo/rocketchat --eval \"rs.initiate({ _id: ''rs0'', members: [ { _id: 0, host: ''localhost:27017'' } ]})\" && s=$$? && break || s=$$?; echo \"Tried $$i times. Waiting 5 secs...\"; sleep 5; done; (exit $$s)"'
depends_on: depends_on:
- mongo - mongo

Loading…
Cancel
Save