From 838ab888db7d3333f34a4b456c58ef6597c4cc9d Mon Sep 17 00:00:00 2001 From: Lee Matos Date: Sat, 15 Jul 2017 13:51:02 -0400 Subject: [PATCH] clarify docker build happens inside of the repo folder (#2807) I intuited that this was the case, but being more explicit might help other docker newbies to understand what's happening. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index db181ed0..7f3f87b0 100644 --- a/README.md +++ b/README.md @@ -108,6 +108,7 @@ The following flags can be passed to `cmake`: A Dockerfile is provided to run Servatrice (the Cockatrice server) using [Docker](https://www.docker.com/what-docker).
You just need to create an image from the Dockerfile
+`cd /path/to/Cockatrice-Repo/` `docker build -t servatrice .`
And then run it
`docker run -i -p 4747:4747/tcp -t servatrice:latest`