summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2021-01-28 12:33:50 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2021-01-28 12:33:50 +0100
commita07b83ee11b99621485af1b0a1480ffe41f89234 (patch)
tree395e73fbbf4e45317fa115c9042616c80c63213d /README.md
parentAdd Heroku status badge (diff)
downloadseven-wonders-a07b83ee11b99621485af1b0a1480ffe41f89234.tar.gz
seven-wonders-a07b83ee11b99621485af1b0a1480ffe41f89234.tar.bz2
seven-wonders-a07b83ee11b99621485af1b0a1480ffe41f89234.zip
Clarify docker local run
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index 433a1a68..d4470e1c 100644
--- a/README.md
+++ b/README.md
@@ -19,9 +19,11 @@ Heroku's free plan shuts down servers when not used for 30 minutes, so please al
new app on it after every successful build of the master branch.
It is therefore possible that you experience a server restart if I just pushed some new changes.
-#### Locally
+### Locally
-You can also run the server on your own machine by running:
+The game is published as a [Docker image on DockerHub](https://hub.docker.com/r/hildan/seven-wonders-server).
+
+If you have [Docker](https://www.docker.com/) installed, you can run the server on your own machine by running:
```
docker run -p 80:80 hildan/seven-wonders-server
bgstack15