Fix DNS for prowlarr and transmission
This commit is contained in:
parent
df1843667a
commit
672e582bf2
2 changed files with 4 additions and 2 deletions
|
@ -5,7 +5,8 @@ services:
|
||||||
image: ghcr.io/linuxserver/prowlarr:develop
|
image: ghcr.io/linuxserver/prowlarr:develop
|
||||||
environment:
|
environment:
|
||||||
- TZ=${TZ} # Can use any env variable. List in runtipi/templates/env-sample
|
- TZ=${TZ} # Can use any env variable. List in runtipi/templates/env-sample
|
||||||
- DNS_IP=${DNS_IP}
|
dns:
|
||||||
|
- ${DNS_IP}
|
||||||
volumes:
|
volumes:
|
||||||
- ${APP_DATA_DIR}/data/config:/config #Always start the path with ${APP_DATA_DIR}. This will put all data inside app-data/my-app/data
|
- ${APP_DATA_DIR}/data/config:/config #Always start the path with ${APP_DATA_DIR}. This will put all data inside app-data/my-app/data
|
||||||
ports:
|
ports:
|
||||||
|
|
|
@ -3,6 +3,8 @@ services:
|
||||||
transmission:
|
transmission:
|
||||||
image: lscr.io/linuxserver/transmission
|
image: lscr.io/linuxserver/transmission
|
||||||
container_name: transmission
|
container_name: transmission
|
||||||
|
dns:
|
||||||
|
- ${DNS_IP}
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
|
@ -16,7 +18,6 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- ${APP_DATA_DIR}/data/config:/config
|
- ${APP_DATA_DIR}/data/config:/config
|
||||||
- ${ROOT_FOLDER_HOST}/media/torrents:/downloads
|
- ${ROOT_FOLDER_HOST}/media/torrents:/downloads
|
||||||
- ${ROOT_FOLDER_HOST}/media/torrents/watch:/watch
|
|
||||||
ports:
|
ports:
|
||||||
- ${APP_PORT}:9091
|
- ${APP_PORT}:9091
|
||||||
- 51413:51413
|
- 51413:51413
|
||||||
|
|
Loading…
Add table
Reference in a new issue