comprofix.com/docker-compose.yml
Matthew McKinnon 53df1a8345
All checks were successful
/ build-node (push) Successful in 51s
/ publish (push) Successful in 14s
feat: add build and deploy
2024-09-21 14:07:19 +10:00

17 lines
518 B
YAML

---
services:
comprofix:
container_name: comprofix
image: git.comprofix.com/mmckinnon/comprofix.com:latest
restart: unless-stopped
networks:
- proxy
labels:
- traefik.enable=true
- traefik.http.routers.comprofix.rule=Host(`comprofix.com`) || Host(`www.comprofix.com`)
- traefik.http.routers.comprofix.entrypoints=https
- traefik.http.routers.comprofix.tls=true
- traefik.http.services.comprofix.loadbalancer.server.port=80
networks:
proxy:
external: true