Files
homelab/tasks/kotio.yml
Alex Frantz e8c1a509dd
All checks were successful
Deploy Containers / Prepare (push) Successful in 23s
fix database name
2025-12-26 20:36:18 -05:00

24 lines
679 B
YAML

---
- name: Deploy Kotio
include_role:
name: docker
vars:
name: kotio
networks:
- name: kotio
- name: homelab
image:
name: gabehf/koito
tag: latest
env:
KOITO_DATABASE_URL: "postgres://koito:{{ KOTIO_DB_PASS }}@172.16.0.25:5432/koito"
KOITO_ALLOWED_HOSTS: koito.fntz.net
volumes:
- "{{ data_dir }}/koito/app:/etc/koito"
labels:
traefik.enable: "true"
traefik.http.routers.kotio.rule: Host(`koito.fntz.net`)
traefik.http.routers.kotio.entrypoints: webSecure
traefik.http.routers.kotio.tls.certresolver: letsencrypt
traefik.http.services.kotio.loadbalancer.server.port: "4110"