From 717f64f86e04835ac52f3281f9344f3ddad5b93d Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Mon, 20 Jun 2022 11:12:48 -0400 Subject: [PATCH] Update README.md --- README.md | 44 +++++++++++++++++++++++++------------------- 1 file changed, 25 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 44ff4c6..3168af0 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ Container images are configured using parameters passed at runtime (such as thos | `-v /downloads` | Path to your download folder location. (required path)| | `-v /music` | Path to your music folder location.| | `-v /music-videos` | Path to your music-videos folder location.| +| `-e TZ=America/New_York` | Specify a timezone to use EG America/New_York. | | `-e PUID=1000` | for UserID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation | | `-e autoStart=true` | true = enabled :: Runs script automatically on startup | @@ -61,25 +62,27 @@ Here are some example snippets to help you get started creating a container. ``` docker create \ --name=lidarr-extended \ - -v /path/to/config/files:/config - -v /path/to/downloads:/downloads - -v /path/to/music:/music - -v /path/to/music-videos:/music-videos - -e PUID=1000 - -e PGID=1000 - -e autoStart=true - -e configureLidarrWithOptimalSettings=true - -e audioFormat=native - -e audioBitrate=lossless - -e dlClientSource=both - -e arlToken=Token_Goes_Here - -e addDeezerTopArtists=true - -e addDeezerTopAlbumArtists=true - -e addDeezerTopTrackArtists=true - -e topLimit=10 - -e addRelatedArtists=true - -e plexUrl=http://x.x.x.x:32400 - -e plexToken=Token_Goes_Here + -v /path/to/config/files:/config \ + -v /path/to/downloads:/downloads \ + -v /path/to/music:/music \ + -v /path/to/music-videos:/music-videos \ + -p 8686:8686 \ + -e TZ=America/New_York \ + -e PUID=1000 \ + -e PGID=1000 \ + -e autoStart=true \ + -e configureLidarrWithOptimalSettings=true \ + -e audioFormat=native \ + -e audioBitrate=lossless \ + -e dlClientSource=both \ + -e arlToken=Token_Goes_Here \ + -e addDeezerTopArtists=true \ + -e addDeezerTopAlbumArtists=true \ + -e addDeezerTopTrackArtists=true \ + -e topLimit=10 \ + -e addRelatedArtists=true \ + -e plexUrl=http://x.x.x.x:32400 \ + -e plexToken=Token_Goes_Here \ --restart unless-stopped \ randomninjaatk/lidarr-extended ``` @@ -101,6 +104,7 @@ services: - /path/to/music:/music - /path/to/music-videos:/music-videos environment: + - TZ=America/New_York - PUID=1000 - PGID=1000 - autoStart=true @@ -116,6 +120,8 @@ services: - addRelatedArtists=true - plexUrl=http://x.x.x.x:32400 - plexToken=Token_Goes_Here + ports: + - 8686:8686 restart: unless-stopped ```