Files
simple-qr/docker-compose.yml
Pihkaal a9844c3414
Some checks failed
Build and Push Docker Image / build (push) Failing after 11s
github -> gitea
2025-12-21 20:03:16 +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