Adding healthchecks to docker-compose

This commit is contained in:
Brad Murray 2023-01-12 17:59:02 -05:00 committed by GitHub
parent e76656a162
commit 597d3955a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,6 +32,10 @@ services:
- SETGID - SETGID
- SETUID - SETUID
- DAC_OVERRIDE - DAC_OVERRIDE
healthcheck:
test: [ "CMD", "redis-cli", "--raw", "incr", "ping" ]
interval: 1m
timeout: 5s
searxng: searxng:
container_name: searxng container_name: searxng
@ -55,6 +59,11 @@ services:
options: options:
max-size: "1m" max-size: "1m"
max-file: "1" max-file: "1"
healthcheck:
test: ["CMD", "wget" ,"--no-verbose", "--tries=1", "--spider", "http://localhost:8080/info/en/about"]
interval: 2m
timeout: 5s
networks: networks:
searxng: searxng:
ipam: ipam: