diff --git a/Docker.md b/Docker.md index 43f80fc..3070795 100644 --- a/Docker.md +++ b/Docker.md @@ -5,8 +5,8 @@ This guide is for people who want to run RSS Bridge using Docker. If you want to ```bash docker create \ --name=rss-bridge \ --v :/app/public/whitelist.txt \ --p 3000:80 \ +--volume :/app/public/whitelist.txt \ +--publish 3000:80 \ rssbridge/rss-bridge:latest ``` @@ -15,8 +15,8 @@ And access it using `http://IP_Address:3000`. If you'd like to run a specific ve ```bash docker create \ --name=rss-bridge \ --v :/app/public/whitelist.txt \ --p 3000:80 \ +--volume :/app/public/whitelist.txt \ +--publish 3000:80 \ rssbridge/rss-bridge:$version ```