release candidate

This commit is contained in:
2025-10-12 16:50:32 -07:00
parent 3432e8ac9f
commit 699d7f54c8
20 changed files with 415 additions and 150 deletions

View File

@ -4,6 +4,12 @@
# Install Jellyfin
###############################################
- name: jellyfin - stop and delete container if running
ignore_errors: true
shell: |
docker stop jellyfin
docker rm jellyfin
- name: jellyfin - create folder
file:
path: "{{ jellyfin_working_folder }}"
@ -12,6 +18,7 @@
# Extract jellyfin configs
- name: jellyfin - Extract jellyfin.tar.gz
when: not refresh_special | bool
unarchive:
src: jellyfin.tar.gz
dest: "/opt/cosmos"
@ -28,10 +35,11 @@
- name: "jellyfin - Start container at {{ jellyfin_port }}"
shell: "docker-compose -f {{ jellyfin_working_folder }}/docker-compose.yaml up -d"
register: jellyfin_output
- debug:
msg:
- "Docker compose output:"
- "{{ jellyfin_output.stdout_lines }}"
- "{{ jellyfin_output.stderr_lines }}"
#- debug:
# msg:
# - "Docker compose output:"
# - "{{ jellyfin_output.stdout_lines }}"
# - "{{ jellyfin_output.stderr_lines }}"
...