feat: add Dockerfile and deployment configuration; update metadata and project descriptions
Some checks failed
Build and Deploy Gabriel Kaszewski Portfolio / build-and-deploy-local (push) Failing after 10s

This commit is contained in:
2025-09-08 19:24:06 +02:00
parent a99b6353be
commit 368086f9bd
8 changed files with 155 additions and 5 deletions

15
compose.yml Normal file
View File

@@ -0,0 +1,15 @@
services:
gabrielkaszewski:
image: local/gabriel-portfolio:latest
container_name: gabrielkaszewski
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.routers.gabrielkaszewski.rule=Host(`gabrielkaszewski.dev`)"
- "traefik.http.routers.gabrielkaszewski.entrypoints=websecure"
- "traefik.http.routers.gabrielkaszewski.tls.certresolver=letsencrypt"
networks:
- traefik
networks:
traefik:
external: true