From e320afb019f6b62f076f84b498a09df40c48aee8 Mon Sep 17 00:00:00 2001 From: Jason House Date: Sat, 5 Oct 2019 10:38:11 +0900 Subject: [PATCH] Fixing wrong variable names in command line for readme --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 60b2089..ec9682d 100644 --- a/README.md +++ b/README.md @@ -141,16 +141,16 @@ docker build -t gaps . Next, run the container with the environment variables: ```bash -docker run -t -e DBAPIKEY= -e PLEXADDRESS= -e WRITETOFILE= [-e TMDBLISTID= ] gaps +docker run -t -e DB_API_KEY= -e $PLEX_ADDRESS= -e $WRITE_TO_FILE= [-e TMDBLISTID= ] gaps ``` In example: ```bash -docker run -t -e DBAPIKEY=myapikey -e PLEXADDRESS=http://192.168.0.10:32400/library/sections/1/all/?X-Plex-Token=plextoken -e WRITETOFILE=true [-e TMDBLISTID=id] gaps +docker run -t -e DB_API_KEY=myapikey -e $PLEX_ADDRESS=http://192.168.0.10:32400/library/sections/1/all/?X-Plex-Token=plextoken -e $WRITE_TO_FILE=true [-e TMDBLISTID=id] gaps Multiple URL: -docker run -t -e DBAPIKEY=myapikey -e PLEXADDRESS=http://192.168.0.10:32400/library/sections/1/all/?X-Plex-Token=plextoken,http://192.168.0.10:32400/library/sections/2/all/?X-Plex-Token=plextoken -e WRITETOFILE=true gaps +docker run -t -e DB_API_KEY=myapikey -e $PLEX_ADDRESS=http://192.168.0.10:32400/library/sections/1/all/?X-Plex-Token=plextoken,http://192.168.0.10:32400/library/sections/2/all/?X-Plex-Token=plextoken -e $WRITE_TO_FILE=true gaps ``` ### Option Properties in Docker @@ -164,7 +164,7 @@ READ_TIMEOUT These are optional properties to help with Plex Sections that are very large. Timeouts can be set longer to help when parsing the big XML returned by Plex. They are not required and will default to 180 seconds. ```bash -docker run -t -e DBAPIKEY=myapikey -e PLEXADDRESS=http://192.168.0.10:32400/library/sections/1/all/?X-Plex-Token=plextoken -e WRITETOFILE=true -e CONNECT_TIMEOUT=180 -e WRITE_TIMEOUT=180 -e READ_TIMEOUT=180 gaps +docker run -t -e DB_API_KEY=myapikey -e PLEX_ADDRESS=http://192.168.0.10:32400/library/sections/1/all/?X-Plex-Token=plextoken -e WRITE_TO_FILE=true -e CONNECT_TIMEOUT=180 -e WRITE_TIMEOUT=180 -e READ_TIMEOUT=180 gaps ```