Files
simple-qr/docker-compose.yml
Pihkaal ac87152124
All checks were successful
Build and Push Docker Image / build (push) Successful in 1m26s
github -> gitea
2025-12-21 20:11:48 +01:00

19 lines
543 B
YAML

services:
app:
container_name: simple-qrz
image: git.pihkaal.xyz/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