From f26a6d0dc34fb30f98c8a0091ba9307e4ec2d845 Mon Sep 17 00:00:00 2001 From: Paul Wellner Bou Date: Mon, 16 Feb 2015 09:25:43 +0100 Subject: [PATCH] Fix docker build command The original command returned an error: $ docker build . -t houndd docker: "build" requires 1 argument. See 'docker build --help'. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a2d46d68..2798e9ee 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Yup, that's it. You can proxy requests to the Go service through Apache/nginx/et You should follow the quickstart guide up to step (3) and then run: - $ docker build . -t houndd + $ docker build -t houndd . $ docker run -it --rm -p 0.0.0.0:6080:6080 --name houndd houndd You should be able to navigate to [http://localhost:6080/](http://localhost:6080/) as usual.