Files
simple-qr/docker-compose.yml
Pihkaal 5d68cb993a
All checks were successful
Deploy / deploy (push) Successful in 2s
Deploy / build (push) Successful in 1m56s
feat: use portainer hook instead of pushing image to gitea package repository
2026-05-30 22:58:15 +02:00

20 lines
578 B
YAML

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