Skip to content

Commit

Permalink
Fix frontend healthcheck url path
Browse files Browse the repository at this point in the history
  • Loading branch information
trottomv committed Jan 10, 2024
1 parent 0aa6cc1 commit f67dcfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion {{cookiecutter.project_dirname}}/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ services:
context: ./{{ cookiecutter.frontend_service_slug }}
dockerfile: ${FRONTEND_DOCKER_FILE:-docker/local.Dockerfile}{% if cookiecutter.backend_type != "none" %}
healthcheck:
test: wget -O- -q http://localhost:3000/{{ cookiecutter.frontend_service_slug }}/health/ || exit 1
test: wget -O- -q http://localhost:3000/{{ cookiecutter.frontend_service_slug }}/health || exit 1
interval: 30s
timeout: 5s
start_period: 5s
Expand Down

0 comments on commit f67dcfd

Please sign in to comment.