Include `docker pull` in Docker instructions (#153)

This commit is contained in:
TheCultLeader666 2021-03-17 22:48:38 -04:00 committed by GitHub
parent 038fafa378
commit a5203fe8dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -157,11 +157,13 @@ cargo install libreddit
Deploy the [Docker image](https://hub.docker.com/r/spikecodes/libreddit) of Libreddit:
```
docker pull spikecodes/libreddit
docker run -d --name libreddit -p 8080:8080 spikecodes/libreddit
```
Deploy using a different port (in this case, port 80):
```
docker pull spikecodes/libreddit
docker run -d --name libreddit -p 80:8080 spikecodes/libreddit
```