knck_pl/docker-compose.yml
Jakub Kaniecki 1befef102f deploy
2025-03-30 18:59:15 +02:00

26 lines
524 B
YAML

version: '3.8'
services:
frontend:
build:
context: .
dockerfile: Dockerfile
ports:
- "80:80"
depends_on:
- backend
backend:
build:
context: ./backend
dockerfile: Dockerfile
ports:
- "3001:3001"
environment:
- SMTP_HOST=smtp.mail.me.com
- SMTP_PORT=587
- SMTP_USER=your-email@me.com
- SMTP_PASS=your-app-specific-password
- SMTP_FROM=your-email@me.com
- SMTP_TO=your-email@me.com
- CORS_ORIGIN=http://localhost