1
0
mirror of https://github.com/spacebarchat/spacebarchat.git synced 2024-11-12 21:52:40 +01:00

update submodules

This commit is contained in:
Flam3rboy 2021-05-29 18:57:16 +02:00
parent 66b2ebdf18
commit 0f97bdc311
2 changed files with 21 additions and 14 deletions

View File

@ -6,7 +6,7 @@ services:
build: gateway build: gateway
ports: ports:
- "3002:3002" - "3002:3002"
links: depends_on:
- mongo - mongo
env_file: ./.docker/env env_file: ./.docker/env
fosscord-api: fosscord-api:
@ -15,7 +15,7 @@ services:
build: api build: api
ports: ports:
- "3001:3001" - "3001:3001"
links: depends_on:
- mongo - mongo
env_file: ./.docker/env env_file: ./.docker/env
mongo: mongo:
@ -27,6 +27,7 @@ services:
ports: ports:
- "27017:27017" - "27017:27017"
command: mongod --replSet rs0 command: mongod --replSet rs0
restart: unless-stopped
mongo-init-replica: mongo-init-replica:
image: mongo image: mongo
command: > command: >
@ -40,5 +41,5 @@ services:
echo \"Tried $$i times. Waiting 5 secs...\"; echo \"Tried $$i times. Waiting 5 secs...\";
sleep 5; sleep 5;
done; (exit $$s)" done; (exit $$s)"
links: depends_on:
- mongo - mongo

View File

@ -30,6 +30,12 @@
{ {
"path": "./api" "path": "./api"
}, },
{
"path": "./rtc"
},
{
"path": "./voice-gateway"
},
{ {
"path": "./landingpage" "path": "./landingpage"
}, },