Skip to content

Commit

Permalink
add tdarr server port control var
Browse files Browse the repository at this point in the history
  • Loading branch information
ahembree committed May 29, 2024
1 parent d095612 commit f2bb0b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions roles/hmsdocker/defaults/main/service_misc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ sabnzbd_enable_downloads_mount: yes
tdarr_transcode_folder: "{{ hms_docker_apps_path }}/tdarr/transcode_temp" # default: "{{ hms_docker_apps_path }}/tdarr/transcode_temp"
tdarr_enable_nvidia_gpu: "{{ enable_nvidia_gpu }}"
tdarr_enable_intel_gpu: "{{ enable_intel_gpu }}"
tdarr_enable_node_server: no
### End Tdarr
#######################################################################

Expand Down
3 changes: 3 additions & 0 deletions roles/hmsdocker/templates/docker-compose.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -1150,6 +1150,9 @@ services:
- 8266:8266 # server port
#- 8267:8267 # Internal node port
#- 8268:8268 # Example extra node port
{% elif tdarr_enable_node_server %}
ports:
- 8266:8266
{% endif %}
environment:
- PUID=${PUID}
Expand Down

0 comments on commit f2bb0b9

Please sign in to comment.