ansible-nas/tasks/get_iplayer.yml
animeai ce21999f46 Map all ports as variables in all.yml.dist
NOTE: The majority of traefik ports were totally broken and would never have worked. It should be the external port there, not the internal container port!.

Port conflicts were fixed.
2020-01-05 21:47:40 +00:00

21 lines
562 B
YAML

- name: Create get_iplayer Directories
file:
path: "{{ item }}"
state: directory
with_items:
- "{{ get_iplayer_config_directory }}"
- "{{ get_iplayer_download_directory }}"
- name: get_iplayer Docker Container
docker_container:
name: get_iplayer
image: kolonuk/get_iplayer
pull: true
volumes:
- "{{ get_iplayer_config_directory }}:/root/.get_iplayer:rw"
- "{{ get_iplayer_download_directory }}:/root/output:rw"
ports:
- "{{ get_iplayer_port }}:8181"
restart_policy: unless-stopped
memory: 1g