From e6b00ae7fadda06a1909fab460d76a38d9365c8b Mon Sep 17 00:00:00 2001 From: Florentin Raud Date: Wed, 5 Aug 2015 10:05:54 +0100 Subject: [PATCH] Adding a stanza to test the config file This testing instruction will hopefully help people in their workflow. The goal is to test the config before building a new image. I also removed the semi column and added a h2 to 'Build and run' Signed-off-by: Florentin Raud --- haproxy/content.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/haproxy/content.md b/haproxy/content.md index 21c9c52c..de669342 100644 --- a/haproxy/content.md +++ b/haproxy/content.md @@ -23,10 +23,21 @@ FROM haproxy:1.5 COPY haproxy.cfg /usr/local/etc/haproxy/haproxy.cfg ``` -Build and run: +## Build the container ```console $ docker build -t my-haproxy . +``` + +## Test the configuration file + +```console +$ docker run -it --rm --name haproxy-syntax-check haproxy:1.5 haproxy -c -f /usr/local/etc/haproxy/haproxy.cfg +``` + +## Run the container + +```console $ docker run -d --name my-running-haproxy my-haproxy ```