Skip to content

Commit

Permalink
fix: for pocketbase service in 'docker-compose.yml' use port 80 when …
Browse files Browse the repository at this point in the history
…checking health of the container

Signed-off-by: Robert Goniszewski <[email protected]>
  • Loading branch information
Robert Goniszewski committed Dec 8, 2023
1 parent ba29af1 commit 25183a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- ./pb_data:/pb_data
- ./pb_migrations:/pb_migrations/
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:8090/api/health || exit 1
test: wget --no-verbose --tries=1 --spider http://localhost:80/api/health || exit 1
interval: 5s
timeout: 5s
retries: 5
Expand Down

0 comments on commit 25183a2

Please sign in to comment.