Skip to content

Commit e879a16

Browse files
authored
Add healthcheck for docker-compose + autoheal for auto restart
1 parent 0cb3404 commit e879a16

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Installation.md

+12
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,20 @@ services:
8888
https_only: false
8989
domain:
9090
# external_port:
91+
healthcheck:
92+
test: wget -nv --tries=1 --spider http://127.0.0.1:3000/api/v1/comments/jNQXAC9IVRw || exit 1
93+
interval: 30s
94+
timeout: 5s
95+
retries: 2
9196
depends_on:
9297
- postgres
98+
autoheal:
99+
restart: always
100+
image: willfarrell/autoheal
101+
environment:
102+
- AUTOHEAL_CONTAINER_LABEL=all
103+
volumes:
104+
- /var/run/docker.sock:/var/run/docker.sock
93105
94106
volumes:
95107
postgresdata:

0 commit comments

Comments
 (0)