From f51231f915f4a8b7f88aea10f8036746e73aad9b Mon Sep 17 00:00:00 2001 From: Manju <1180369+hanasim@users.noreply.github.com> Date: Sun, 16 Jun 2024 14:45:02 +0100 Subject: [PATCH] While running docker mention 127.0.0.1 in port mapping While running docker mention 127.0.0.1 so that it doesn't conflict with resolve daemon --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 57efe7c..85b2e32 100644 --- a/README.md +++ b/README.md @@ -165,8 +165,8 @@ go build 5) Run Docker, this example expects that you have `port = "80"` in your `config.cfg`: ``` docker run --rm --name acmedns \ - -p 53:53 \ - -p 53:53/udp \ + -p 127.0.0.1:53:53 \ + -p 127.0.0.1:53:53/udp \ -p 80:80 \ -v /path/to/your/config:/etc/acme-dns:ro \ -v /path/to/your/data:/var/lib/acme-dns \