Add deployment workflow and Docker configuration

This commit is contained in:
2025-07-15 16:33:57 -06:00
parent be399f30fe
commit 1708486fe7
3 changed files with 47 additions and 0 deletions

19
docker-compose.yml Normal file
View File

@ -0,0 +1,19 @@
version: '3.8'
services:
apartment-dashboard:
build: .
container_name: apartment-dashboard
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.routers.apartments.rule=Host(`apartments.maverickapplications.com`)"
- "traefik.http.routers.apartments.entrypoints=websecure"
- "traefik.http.routers.apartments.tls.certresolver=letsencrypt"
- "traefik.http.services.apartments.loadbalancer.server.port=80"
networks:
- traefik
networks:
traefik:
external: true