sonarr_anime: add
This commit is contained in:
parent
c38369f134
commit
cf2c4caf2c
1
.env
1
.env
|
@ -90,6 +90,7 @@ MARIADB_EXTERNAL_PORT=3307
|
||||||
PHOTOPRISM_EXTERNAL_PORT=2342
|
PHOTOPRISM_EXTERNAL_PORT=2342
|
||||||
PHOTOPRISM_INTERNAL_PORT=2342
|
PHOTOPRISM_INTERNAL_PORT=2342
|
||||||
SONARR_TV_STANDARD_EXTERNAL_PORT=8989
|
SONARR_TV_STANDARD_EXTERNAL_PORT=8989
|
||||||
|
SONARR_ANIME_EXTERNAL_PORT=8988
|
||||||
SONARR_INTERNAL_PORT=8989
|
SONARR_INTERNAL_PORT=8989
|
||||||
BASEROW_EXTERNAL_PORT=8089
|
BASEROW_EXTERNAL_PORT=8089
|
||||||
BASEROW_INTERNAL_PORT=80
|
BASEROW_INTERNAL_PORT=80
|
||||||
|
|
|
@ -617,7 +617,7 @@ services:
|
||||||
- infra
|
- infra
|
||||||
- base
|
- base
|
||||||
|
|
||||||
sonarr:
|
sonarr_tv:
|
||||||
container_name: sonarr_tv_standard
|
container_name: sonarr_tv_standard
|
||||||
image: linuxserver/sonarr:develop
|
image: linuxserver/sonarr:develop
|
||||||
networks:
|
networks:
|
||||||
|
@ -639,6 +639,27 @@ services:
|
||||||
- base
|
- base
|
||||||
- media
|
- media
|
||||||
|
|
||||||
|
sonarr_anime:
|
||||||
|
container_name: sonarr_anime
|
||||||
|
image: linuxserver/sonarr:develop
|
||||||
|
networks:
|
||||||
|
- public
|
||||||
|
ports:
|
||||||
|
- "${SONARR_ANIME_EXTERNAL_PORT}:${SONARR_INTERNAL_PORT}"
|
||||||
|
environment:
|
||||||
|
- PUID=${PUID}
|
||||||
|
- PGID=${PGID}
|
||||||
|
volumes:
|
||||||
|
- "${DOCKER_STORAGE_PATH}/sonarr_anime:/config"
|
||||||
|
- "${ANIME_PATH}:/anime"
|
||||||
|
- "${NZB_DOWNLOADS_PATH}:/downloads"
|
||||||
|
- "${TORRENTS_SEED_PATH}:/seed"
|
||||||
|
- "${TORRENTS_SEED_PATH}/incomplete:/data/incomplete"
|
||||||
|
restart: unless-stopped
|
||||||
|
profiles:
|
||||||
|
- base
|
||||||
|
- media
|
||||||
|
|
||||||
baserow:
|
baserow:
|
||||||
container_name: baserow
|
container_name: baserow
|
||||||
image: baserow/baserow:latest
|
image: baserow/baserow:latest
|
||||||
|
|
Loading…
Reference in New Issue