-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from jfroment/dev
Release v1.3
- Loading branch information
Showing
6 changed files
with
48 additions
and
20 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# General Traefik (reverse proxy) settings | ||
TRAEFIK_DOMAIN=mydomain.com | ||
ACME_MAIL=[email protected] | ||
PILOT_TOKEN=mytraefiktoken # Keep it empty is not needed | ||
PILOT_TOKEN=mytraefiktoken # Keep it empty if not needed | ||
|
||
# General settings | ||
TZ="Europe/Paris" | ||
|
@@ -14,7 +14,7 @@ HTTP_PASSWORD='mypassword_encoded' # Keep these simple quotes! | |
PGID=1000 | ||
PUID=1000 | ||
|
||
# Database (for Owncloud) | ||
# Database (for Nextcloud) | ||
MYSQL_ROOT_PASSWORD=h4ckMePleAse889912101 | ||
MYSQL_DATABASE=nextcloud | ||
MYSQL_USER=nextcloud | ||
|
@@ -25,4 +25,4 @@ NEXTCLOUD_ADMIN_USER=admin | |
NEXTCLOUD_ADMIN_PASSWORD=h4ckMePleAse873214668 | ||
|
||
# Portainer | ||
PORTAINER_ADMIN_PASSWORD=h4ckMePleAse | ||
PORTAINER_ADMIN_PASSWORD=h4ckMePleAse |
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
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
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
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 |
---|---|---|
@@ -1,28 +1,56 @@ | ||
services: | ||
tdarr: | ||
image: haveagitgat/tdarr:1.3003 | ||
image: haveagitgat/tdarr:latest | ||
container_name: tdarr | ||
restart: always | ||
environment: | ||
- PUID=${PUID} | ||
- PGID=${PGID} | ||
- TZ=${TZ} | ||
- serverIP=0.0.0.0 | ||
- serverPort=8266 | ||
- webUIPort=8265 | ||
volumes: | ||
- torrents:/home/Tdarr/Media | ||
- configtdarr:/home/Tdarr/Documents/Tdarr | ||
- tdarrdb:/var/lib/mongodb | ||
- torrents:/media | ||
- transcodes:/temp | ||
- configtdarrv2:/app/server | ||
- settingstdarrv2:/app/configs | ||
labels: | ||
- "traefik.enable=true" | ||
- "traefik.http.services.tdarr-seedbox.loadbalancer.server.port=8265" | ||
- "traefik.http.routers.tdarr.rule=Host(`tdarr.${TRAEFIK_DOMAIN}`)" | ||
- "traefik.http.routers.tdarr.middlewares=common-auth@file" | ||
- "traefik.http.services.tdarrv2-seedbox.loadbalancer.server.port=8265" | ||
- "traefik.http.routers.tdarrv2.rule=Host(`tdarr.${TRAEFIK_DOMAIN}`)" | ||
- "traefik.http.routers.tdarrv2.middlewares=common-auth@file" | ||
|
||
tdarr_node: | ||
image: haveagitgat/tdarr_node:latest | ||
container_name: tdarr_node | ||
restart: always | ||
environment: | ||
- PUID=${PUID} | ||
- PGID=${PGID} | ||
- TZ=${TZ} | ||
- nodeID=Node1 | ||
- nodeIP=tdarr_node | ||
- nodePort=8267 | ||
- serverIP=tdarr | ||
- serverPort=8266 | ||
volumes: | ||
- torrents:/media | ||
- transcodes:/temp | ||
- settingstdarrv2:/app/configs | ||
labels: | ||
- "traefik.enable=false" | ||
|
||
volumes: | ||
configtdarr: | ||
configtdarrv2: | ||
driver: local-persist | ||
driver_opts: | ||
mountpoint: /data/config/tdarrv2/server | ||
settingstdarrv2: | ||
driver: local-persist | ||
driver_opts: | ||
mountpoint: /data/config/tdarr | ||
tdarrdb: | ||
mountpoint: /data/config/tdarrv2/configs | ||
transcodes: | ||
driver: local-persist | ||
driver_opts: | ||
mountpoint: /data/config/tdarr-db | ||
mountpoint: /data/config/tdarrv2/transcodes |
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