Added MONGO_HOST variable
All checks were successful
pipeline / build-and-push-images (push) Successful in 1m6s
pipeline / deploy (push) Successful in 41s

This commit is contained in:
2025-01-20 12:30:55 +01:00
parent 6513ca492c
commit 52e1acd96c
4 changed files with 7 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ services:
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: password
ME_CONFIG_MONGODB_URL: mongodb://root:password@mongo:27017/
ME_CONFIG_MONGODB_URL: mongodb://mongo:27017/
ME_CONFIG_BASICAUTH: "false"
patch_detector:
@@ -34,6 +34,7 @@ services:
environment:
MONGO_USER: root
MONGO_PASS: password
MONGO_HOST: mongo
match_collector:
image: git.vhaudiquet.fr/vhaudiquet/lolstats-match_collector:${GIT_COMMIT_HASH:-latest}
@@ -47,6 +48,7 @@ services:
environment:
MONGO_USER: root
MONGO_PASS: password
MONGO_HOST: mongo
RIOT_API_KEY: ${RIOT_API_KEY}
# restarter:
@@ -61,5 +63,6 @@ services:
environment:
MONGO_USER: root
MONGO_PASS: password
MONGO_HOST: mongo
volumes:
mongo_data: