Skip to content
Snippets Groups Projects
Commit c36a166d authored by OZGCloud's avatar OZGCloud
Browse files

Merge pull request 'Improve start up of dependent services in docker compose'...

Merge pull request 'Improve start up of dependent services in docker compose' (#151) from e2e_improve_service_dependencies into master

Reviewed-on: https://git.ozg-sh.de/mgm/goofy/pulls/151
parents 8eaa441a 993c5cba
No related branches found
No related tags found
No related merge requests found
......@@ -34,3 +34,6 @@ end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false
[*.yml]
indent_size = 2
\ No newline at end of file
......@@ -46,8 +46,10 @@ services:
ports:
- 9091:9090
depends_on:
- ozg-mongodb
- ozg-elastic
ozg-mongodb:
condition: service_started
ozg-elastic:
condition: service_healthy
ozg-goofy:
image: docker.ozg-sh.de/goofy:${GOOFY_DOCKER_IMAGE:-snapshot-latest}
......@@ -85,6 +87,11 @@ services:
nofile:
soft: 65536
hard: 65536
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:9200" ]
timeout: 10s
retries: 5
start_period: 30s
ozg-usermanager:
image: docker.ozg-sh.de/user-manager:${USERMANAGER_DOCKER_IMAGE:-snapshot-latest}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment