-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- adjusted compose file to store config data - ignoring configs and data for version history - adjusted setup script to make second instance the dev instance
- Loading branch information
1 parent
b3e63aa
commit 009eede
Showing
4 changed files
with
36 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -161,4 +161,7 @@ cython_debug/ | |
|
||
config.yml | ||
|
||
exports/ | ||
exports/ | ||
|
||
config/ | ||
data/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
version: "3.8" | ||
|
||
services: | ||
radarr-dev: | ||
image: lscr.io/linuxserver/radarr:latest | ||
container_name: radarr-dev | ||
environment: | ||
- PUID=0 | ||
- PGID=0 | ||
- TZ=Etc/UTC | ||
volumes: | ||
- ./config/radarr-dev:/config | ||
- ./data/dummy_radarr-dev:/downloads # Dummy path for downloads | ||
ports: | ||
- "7887:7878" # Unique port for Radarr development instance | ||
restart: unless-stopped | ||
|
||
sonarr-dev: | ||
image: lscr.io/linuxserver/sonarr:latest | ||
container_name: sonarr-dev | ||
environment: | ||
- PUID=0 | ||
- PGID=0 | ||
- TZ=Etc/UTC | ||
volumes: | ||
- ./config/sonarr-dev:/config | ||
- ./data/dummy_sonarr-dev:/downloads # Dummy path for downloads | ||
ports: | ||
- "8998:8989" # Unique port for Sonarr development instance | ||
restart: unless-stopped |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters