deploy floof
Some checks failed
Deploy Containers / Prepare (push) Failing after 12s

This commit is contained in:
2026-01-11 19:47:40 -05:00
parent 074ebdfebc
commit 45776f7528
2 changed files with 22 additions and 0 deletions

View File

@@ -106,6 +106,9 @@
- name: Deploy Database
import_tasks: tasks/mariadb.yml
tags: mariadb_deploy
- name: Deploy Floof
import_tasks: tasks/floof.yml
tags: floof_deploy
- hosts: nas

19
tasks/floof.yml Normal file
View File

@@ -0,0 +1,19 @@
---
- name: Deploy Floof
include_role:
name: docker
vars:
name: floof_adventure
directories:
- "{{ data_dir }}/floof"
networks:
- name: homelab
git:
repo: git@git.alexav.gg/alex/floofs-adventure
dest: "{{ data_dir }}/floof"
labels:
traefik.enable: "true"
traefik.http.routers.dz.rule: Host(`floof.alexav.gg`)
traefik.http.routers.dz.entrypoints: webSecure
traefik.http.routers.dz.tls.certresolver: letsencrypt
traefik.http.services.dz.loadbalancer.server.port: "3001"