Files
homelab/tasks/comprofix.com.yml
Matthew McKinnon 12444311a4
All checks were successful
Deploy / Prepare Build (push) Successful in 13s
Initial Commit
2025-09-08 18:29:40 +10:00

14 lines
518 B
YAML

- name: Create the comprofix.com container
docker_container:
name: comprofix.com
image: git.comprofix.com/mmckinnon/comprofix.com:latest
restart_policy: unless-stopped
recreate: true
networks:
- name: proxy
labels:
traefik.enable: "true"
traefik.http.routers.comprofix.rule: "Host(`comprofix.com`)"
traefik.http.routers.comprofix.entrypoints: "https"
traefik.http.routers.comprofix.tls: "true"
traefik.http.services.comprofix.loadbalancer.server.port: "80"