commit 16a2d5c08abbcf8b0d3321841e11535b76cd2b7b Author: stephane.david Date: Fri Jun 6 19:02:19 2025 +0200 First version diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..83bbabb --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,15 @@ +services: + yadnsb: + image: ghcr.io/altendorfme/yadnsb:latest + container_name: YaDNSb + healthcheck: + test: ["CMD-SHELL", "nc -z 127.0.0.1 3000 || exit 1"] + interval: 10s + timeout: 5s + retries: 3 + start_period: 90s + security_opt: + - no-new-privileges:true + ports: + - 3521:3000 + restart: on-failure:5 \ No newline at end of file