From 20f3fc6ed16e03b4113970bff8916faae23641e1 Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Wed, 22 Mar 2017 12:07:36 +0100 Subject: Remove quotes from 'docker build' command The `README.md` lists the docker command `docker build -t="opendc" .` as a build-step. The quotation-marks (`"`) are actually not necessary, since the name only consists of alphanumeric characters. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f7048484..1deeffa0 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ git clone --recursive https://github.com/atlarge-research/opendc.git cd opendc/ # Build the Docker image -docker build -t="opendc" . +docker build -t=opendc . # Start a container with the image docker run -d --name opendc -p 8081:8081 -e 'SERVER_URL=http://localhost:8081' -e 'OAUTH_CLIENT_ID=your-google-oauth-client-id' -e 'OAUTH_CLIENT_SECRET=your-google-oauth-secret' opendc -- cgit v1.2.3