From 22ba16080e9c873d499cf82e06c7d104632b7b59 Mon Sep 17 00:00:00 2001 From: Joachim Viide Date: Mon, 14 May 2018 14:46:15 +0900 Subject: [PATCH] Update README.md --- examples/bad-http-server/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/bad-http-server/README.md b/examples/bad-http-server/README.md index 67419f6..ba4ceec 100644 --- a/examples/bad-http-server/README.md +++ b/examples/bad-http-server/README.md @@ -11,7 +11,7 @@ docker build -t bad-http-server . Run the image, exposing the bad server on localhost:8080: ```sh -docker run --rm --cap-add NET_ADMIN -p 8080:8080 bad-http-server +docker run -ti --rm --cap-add NET_ADMIN -p 8080:8080 bad-http-server ``` The `NET_ADMIN` capability needs to be added for the initial iptables commands in [`entrypoint.sh`](./entrypoint.sh).