Revert "third times the charm"
All checks were successful
Deploy Containers / Prepare (push) Successful in 14s
All checks were successful
Deploy Containers / Prepare (push) Successful in 14s
This reverts commit f3a49f4461.
This commit is contained in:
3
main.yml
3
main.yml
@@ -43,6 +43,9 @@
|
||||
- name: Deploy Vaultwarden
|
||||
import_tasks: tasks/vaultwarden.yml
|
||||
tags: vaultwarden_deploy
|
||||
- name: Deploy Tautulli
|
||||
import_tasks: tasks/tautulli.yml
|
||||
tags: tautulli_deploy
|
||||
- name: Deploy Immich
|
||||
import_tasks: tasks/immich.yml
|
||||
tags: immich_deploy
|
||||
|
||||
25
tasks/tautulli.yml
Normal file
25
tasks/tautulli.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
- name: Deploy Tautulli
|
||||
include_role:
|
||||
name: docker
|
||||
vars:
|
||||
name: tautulli
|
||||
directories:
|
||||
- "{{ data_dir }}/tautulli"
|
||||
image:
|
||||
name: ghcr.io/tautulli/tautulli
|
||||
tag: latest
|
||||
networks:
|
||||
- name: homelab
|
||||
volumes:
|
||||
- "{{ data_dir }}/tautulli:/config"
|
||||
env:
|
||||
PUID: "{{ PUID }}"
|
||||
PGID: "{{ PGID }}"
|
||||
TZ: "{{ TZ }}"
|
||||
labels:
|
||||
traefik.enable: "true"
|
||||
traefik.http.routers.tt.rule: Host(`tt.fntz.net`)
|
||||
traefik.http.routers.tt.entrypoints: webSecure
|
||||
traefik.http.routers.tt.tls.certresolver: letsencrypt
|
||||
traefik.http.services.tt.loadbalancer.server.port: "8181"
|
||||
Reference in New Issue
Block a user