mirror of
https://github.com/davestephens/ansible-nas
synced 2024-11-15 16:28:03 +00:00
ce21999f46
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.
21 lines
562 B
YAML
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
|
|
|