Refactor everything
This commit is contained in:
parent
2e100d290f
commit
3f2e60becf
69 changed files with 366 additions and 281 deletions
|
@ -1,8 +1,12 @@
|
|||
---
|
||||
- name: Set common facts
|
||||
ansible.builtin.import_tasks: tasks/set-default-facts.yml
|
||||
|
||||
- name: Deploy {{ svc.name }}
|
||||
tags:
|
||||
- jellyfin
|
||||
- media
|
||||
vars:
|
||||
svc: "{{ jellyfin_svc }}"
|
||||
env: "{{ jellyfin_env }}"
|
||||
compose: "{{ jellyfin_compose }}"
|
||||
block:
|
||||
- name: Import tasks to deploy common service
|
||||
ansible.builtin.import_tasks: tasks/deploy-common-service.yml
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
svc:
|
||||
jellyfin_svc:
|
||||
domain: media.serguzim.me
|
||||
name: jellyfin
|
||||
port: 8096
|
||||
|
@ -7,13 +7,12 @@ svc:
|
|||
host: "{{ postgres.host }}"
|
||||
port: "{{ postgres.port }}"
|
||||
|
||||
svc_env:
|
||||
jellyfin_env:
|
||||
JELLYFIN_PublishedServerUrl: https://{{ svc.domain }}
|
||||
|
||||
compose:
|
||||
jellyfin_compose:
|
||||
watchtower: true
|
||||
image: jellyfin/jellyfin
|
||||
env: true
|
||||
volumes:
|
||||
- config:/config
|
||||
- cache:/cache
|
||||
|
|
Reference in a new issue