Explicitly restart containers to prevent hard-to-debug issues
This commit is contained in:
parent
e3d4aa61a8
commit
4907cdfd99
|
@ -27,8 +27,10 @@
|
||||||
devices:
|
devices:
|
||||||
- /dev/dri:/dev/dri
|
- /dev/dri:/dev/dri
|
||||||
state: started
|
state: started
|
||||||
- name: copy jellyfin config to nginx
|
restart: yes
|
||||||
|
- name: copy jellyfin nginx config
|
||||||
template:
|
template:
|
||||||
src: jellyfin.conf.j2
|
src: jellyfin.conf.j2
|
||||||
dest: "{{ nginx_confd_folder }}/jellyfin.conf"
|
dest: "{{ nginx_confd_folder }}/jellyfin.conf"
|
||||||
|
mode: '0755'
|
||||||
notify: reload nginx
|
notify: reload nginx
|
|
@ -23,3 +23,4 @@
|
||||||
NGINX_HOST: "{{ base_domain }}"
|
NGINX_HOST: "{{ base_domain }}"
|
||||||
NGINX_PORT: '80'
|
NGINX_PORT: '80'
|
||||||
state: started
|
state: started
|
||||||
|
restart: yes
|
||||||
|
|
Loading…
Reference in New Issue