Files
lilou-cat/docker-compose.yml
Pihkaal 02155e1a9e
All checks were successful
Build and Deploy / build (push) Successful in 20s
Build and Deploy / deploy (push) Successful in 1s
feat: use portainer hook instead of pushing image to gitea package repository
2026-05-30 22:44:18 +02:00

20 lines
577 B
YAML

services:
server:
container_name: lilou-cat
build: .
networks:
- web
labels:
- "traefik.enable=true"
- "traefik.http.routers.lilou-cat.rule=Host(`lilou.cat`)"
- "traefik.http.routers.lilou-cat.service=lilou-cat"
- "traefik.http.routers.lilou-cat.middlewares=umami-middleware@file"
- "traefik.http.services.lilou-cat.loadbalancer.server.port=3000"
- "traefik.http.routers.lilou-cat.tls=true"
- "traefik.http.routers.lilou-cat.tls.certResolver=myresolver"
restart: always
networks:
web:
external: true