Files
simple-qr/docker-compose.yml
Pihkaal a71662449f
All checks were successful
Build and Push Docker Image / build (push) Successful in 1m35s
chore(docker): fix typo in container name
2025-12-22 05:20:14 +01:00

19 lines
542 B
YAML

services:
app:
container_name: simple-qr
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