From 8ab73892858373bfde31641ec91df1ed33038214 Mon Sep 17 00:00:00 2001 From: Kiran Shila Date: Wed, 11 Aug 2021 19:12:05 -0700 Subject: [PATCH] Update README.md Adds docker runtime command with the correct env vars --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1b0dca2..4656f5b 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,18 @@ Pull the latest image with `docker pull ghcr.io/kiranshila/doplarr:main` -Then run with `fixme` +Then run with +```bash +docker run \ +-e SONARR_URL='http://localhost:8989' \ +-e RADARR_URL='http://localhost:7878' \ +-e SONARR_API='sonarr_api' \ +-e RADARR_API='radarr_api' \ +-e MAX_RESULTS=10 \ +-e BOT_TOKEN='bot_token' \ +--name doplarr ghcr.io/kiranshila/doplarr:main + +``` ## Building and Running Locally