Docker compose for docker stack
All checks were successful
pipeline / build-and-push-images (push) Successful in 24s
All checks were successful
pipeline / build-and-push-images (push) Successful in 24s
This commit is contained in:
@@ -13,23 +13,25 @@ services:
|
||||
image: mongo-express
|
||||
restart: always
|
||||
ports:
|
||||
- 8081:8081
|
||||
- "8081:8081"
|
||||
environment:
|
||||
ME_CONFIG_MONGODB_ADMINUSERNAME: root
|
||||
ME_CONFIG_MONGODB_ADMINPASSWORD: password
|
||||
ME_CONFIG_MONGODB_URL: mongodb://root:password@mongo:27017/
|
||||
ME_CONFIG_BASICAUTH: false
|
||||
ME_CONFIG_BASICAUTH: "false"
|
||||
|
||||
patch_detector:
|
||||
image: git.vhaudiquet.fr/vhaudiquet/lolstats-patch_detector:latest
|
||||
build: ./patch_detector
|
||||
restart: no
|
||||
restart: "no"
|
||||
environment:
|
||||
MONGO_USER: root
|
||||
MONGO_PASS: password
|
||||
|
||||
match_collector:
|
||||
image: git.vhaudiquet.fr/vhaudiquet/lolstats-match_collector:latest
|
||||
build: ./match_collector
|
||||
restart: no
|
||||
restart: "no"
|
||||
environment:
|
||||
MONGO_USER: root
|
||||
MONGO_PASS: password
|
||||
@@ -37,10 +39,11 @@ services:
|
||||
# restarter:
|
||||
|
||||
frontend:
|
||||
image: git.vhaudiquet.fr/vhaudiquet/lolstats-frontend:latest
|
||||
build: ./frontend
|
||||
restart: always
|
||||
ports:
|
||||
- 3000:3000
|
||||
- "3000:3000"
|
||||
environment:
|
||||
MONGO_USER: root
|
||||
MONGO_PASS: password
|
||||
|
||||
Reference in New Issue
Block a user