summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGeorgios Andreadis <G.Andreadis@student.tudelft.nl>2017-03-22 12:07:36 +0100
committerGitHub <noreply@github.com>2017-03-22 12:07:36 +0100
commit20f3fc6ed16e03b4113970bff8916faae23641e1 (patch)
tree2ccb56f103ed97e2e84c7397711d089303694bcb /README.md
parent3e03beb7d1cd48ae9d0786af5db4c5556b4c4e3b (diff)
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.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
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