Skip to content

Instantly share code, notes, and snippets.

View agcom's full-sized avatar

Alireza Ghasemi agcom

View GitHub Profile
@agcom
agcom / compose.yaml
Last active June 15, 2024 10:12
Docker Compose NATS health-check
services:
nats:
image: nats:2.10.16-alpine3.19
command: -m 8222
healthcheck:
test: wget http://localhost:8222/healthz -q -S -O -
start_period: 3s
retries: 3
timeout: 3s
interval: 14s