deploy subber
Deploy Containers / Prepare (push) Successful in 24s

This commit is contained in:
2026-05-24 20:44:28 -04:00
parent 1f9bf9a206
commit 0b7e6242fc
2 changed files with 26 additions and 0 deletions
+3
View File
@@ -91,6 +91,9 @@
- name: Deploy CAdvisor
import_tasks: tasks/utility/cadvisor.yml
tags: cadvisor_deploy
- name: Deploy Subber
import_tasks: tasks/utility/subber.yml
tags: subber_deploy
- hosts: jackson
+23
View File
@@ -0,0 +1,23 @@
---
- name: Deploy Subber
include_role:
name: docker
vars:
name: subber
directories:
- "{{ data_dir }}/subber"
image:
name: ghcr.io/azpha/subscription-tracker
tag: latest
networks:
- name: homelab
env:
BASE_URL: "https://subs.fntz.net"
volumes:
- "{{ data_dir }}/subber:/files"
labels:
traefik.enable: "true"
traefik.http.routers.subber.rule: Host(`storage.alexav.gg`)
traefik.http.routers.subber.entrypoints: webSecure
traefik.http.routers.subber.tls.certresolver: letsencrypt
traefik.http.services.subber.loadbalancer.server.port: "3000"