diff --git a/Bridge_API/BridgeAbstract.html b/Bridge_API/BridgeAbstract.html index d7bf7c1b..844bb896 100644 --- a/Bridge_API/BridgeAbstract.html +++ b/Bridge_API/BridgeAbstract.html @@ -100,7 +100,7 @@
docker start rss-bridge
-And access it using http://IP_Address:3000
. If you’d like to run a specific version, you can run it by:
docker create \
---name=rss-bridge \
---volume </local/custom/path>:/config \
---publish 3000:80 \
-rssbridge/rss-bridge:$version
-
-Where you can get the versions published to Docker Hub at https://hub.docker.com/r/rssbridge/rss-bridge/tags/. The server runs on port 80 internally, and you can publish it on a different port (change 3000 to your choice).
+Access it using http://IP_Address:3000
. If you’d like to run a specific version, you can run it by changing the ‘:latest’ on the image to a tag listed here
The server runs on port 80 internally, map any port of your choice (in this example 3000).
You can run it using a docker-compose.yml
as well:
version: '2'
services:
@@ -159,12 +153,12 @@ rssbridge/rss-bridge:$version
- Adding custom bridges and configurationsIf you want to add a bridge that is not part of /bridges
, you can specify an additional folder to copy necessary files to the rss-bridge
container.
-Here root is folder where docker-compose.yml
resides.
+If you want to add a bridge that is not part of /bridges
, you can map a folder to the /config
folder of the rss-bridge
container.
-- Create
custom
folder in root.
-- Copy your bridges files to the
custom
folder. You can also add your custom whitelist.txt file and your custom config.ini.php to this folder.
-- Run
docker-compose up
to recreate service.
+- Create a folder in the location of your docker-compose.yml or your general docker working area (in this example it will be
/home/docker/rssbridge/config
).
+- Copy your custom bridges to the
/home/docker/rssbridge/config
folder. You can also add your custom whitelist.txt file and your custom config.ini.php to this folder.
+- Map the folder to
/config
inside the container. To do that, replace the </local/custom/path>
from the previous examples with /home/docker/rssbridge/config
+