From aff3a155d79a0d4a4c0cfecb741fc200be9c7053 Mon Sep 17 00:00:00 2001 From: almir Date: Tue, 3 Nov 2015 09:28:42 +0100 Subject: [PATCH] - fix hooks.json file name in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a37b72..a2bfa8c 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ FROM adnanh/webhook COPY hooks.json.example /etc/webhook/hooks.json ``` -This `Dockerfile` and `hooks.json` files should be placed inside the same directory. After that run `docker build -t my-webhook-image .` and then start your container: +This `Dockerfile` and `hooks.json.example` files should be placed inside the same directory. After that run `docker build -t my-webhook-image .` and then start your container: ```shell docker run -d -p 9000:9000 --name=webhook my-webhook-image -verbose -hooks=/etc/webhook/hooks.json -hotreload ```