Files
simple-qr/docker-compose.yml
Pihkaal 6a74e8c6ea
All checks were successful
Build and Push Docker Image / build (push) Successful in 1m26s
chore: update gitea url
2026-02-11 14:57:00 +01:00

19 lines
541 B
YAML

services:
app:
container_name: simple-qr
image: git.pihkaal.me/pihkaal/simple-qr:latest
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"
restart: always
networks:
web:
external: true