mirror of
https://github.com/davestephens/ansible-nas
synced 2024-11-15 00:17:10 +00:00
map ports for new containers
This commit is contained in:
parent
6237455eaa
commit
488c89c89a
2 changed files with 5 additions and 5 deletions
|
@ -14,7 +14,7 @@
|
|||
- "{{ lidarr_downloads_directory }}:/downloads:rw"
|
||||
- "{{ lidarr_data_directory }}:/config:rw"
|
||||
ports:
|
||||
- "8686:8686"
|
||||
- "{{ lidarr_port }}:8686"
|
||||
env:
|
||||
TZ: "{{ ansible_nas_timezone }}"
|
||||
PUID: "{{ lidarr_user_id }}"
|
||||
|
@ -25,4 +25,4 @@
|
|||
traefik.backend: "lidarr"
|
||||
traefik.frontend.rule: "Host:lidarr.{{ ansible_nas_domain }}"
|
||||
traefik.enable: "{{ lidarr_available_externally }}"
|
||||
traefik.port: "8686"
|
||||
traefik.port: "{{ lidarr_port }}"
|
|
@ -22,11 +22,11 @@
|
|||
PGID: "{{ ubooquity_group_id|quote }}"
|
||||
MAXMEM: "1024"
|
||||
ports:
|
||||
- "2202:2202"
|
||||
- "2203:2203"
|
||||
- "{{ ubooquity_port_a }}:2202"
|
||||
- "{{ ubooquity_port_b }}:2203"
|
||||
restart_policy: unless-stopped
|
||||
labels:
|
||||
traefik.backend: "ubooquity"
|
||||
traefik.frontend.rule: "Host:ubooquity.{{ ansible_nas_domain }}"
|
||||
traefik.enable: "{{ ubooquity_available_externally }}"
|
||||
traefik.port: "2202"
|
||||
traefik.port: "{{ ubooquity_port_a }}"
|
||||
|
|
Loading…
Reference in a new issue