Files
blog/compose.yml
Gabriel Kaszewski 4d21dd2ab1
Some checks failed
Build and Deploy Blog / build-and-deploy-local (push) Failing after 3s
Remove dockerfile specification from blog service build configuration in compose.yml
2025-09-03 23:40:36 +02:00

18 lines
431 B
YAML

services:
blog:
build:
context: .
target: release
container_name: blog
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.routers.blog.rule=Host(`blog.gabrielkaszewski.dev`)"
- "traefik.http.routers.blog.entrypoints=websecure"
- "traefik.http.routers.blog.tls.certresolver=letsencrypt"
networks:
- traefik
networks:
traefik:
external: true