1
0
mirror of https://github.com/docker-mailserver/docker-mailserver.git synced 2025-08-08 23:06:49 +02:00

chore: Simplify compose.yaml healthcheck (#4498)

This commit is contained in:
Brennan Kinney
2025-06-02 19:27:53 +12:00
committed by GitHub
parent e296eb4f26
commit 3c193a101e
2 changed files with 2 additions and 2 deletions

View File

@ -25,6 +25,6 @@ services:
# cap_add:
# - NET_ADMIN
healthcheck:
test: "ss --listening --tcp | grep -P 'LISTEN.+:smtp' || exit 1"
test: "ss --listening --ipv4 --tcp | grep --silent ':smtp' || exit 1"
timeout: 3s
retries: 0