Files
lilou-cat/docker-compose.yml
Pihkaal 791c4cc908
All checks were successful
Build and Push Docker Image / build (push) Successful in 11s
feat(docker): rename container
2025-12-21 00:06:08 +01:00

19 lines
541 B
YAML

services:
server:
container_name: lilou-cat
image: git.pihkaal.xyz/pihkaal/lilou-cat:latest
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.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