diff options
| author | Georgios Andreadis <G.Andreadis@student.tudelft.nl> | 2017-03-22 12:07:36 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-22 12:07:36 +0100 |
| commit | 20f3fc6ed16e03b4113970bff8916faae23641e1 (patch) | |
| tree | 2ccb56f103ed97e2e84c7397711d089303694bcb /README.md | |
| parent | 3e03beb7d1cd48ae9d0786af5db4c5556b4c4e3b (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.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
