Try building

This commit is contained in:
2025-01-22 22:38:19 -06:00
parent 112d9dd063
commit 5bfbb3b88c
15 changed files with 597 additions and 104 deletions

15
docker-compose.yml Normal file
View File

@ -0,0 +1,15 @@
services:
app:
image: ${IMAGE}
ports:
- "${APP_PORT}:3000"
environment:
- HOST=0.0.0.0
- PORT=3000
- SMTP_HOST=${SMTP_HOST}
- SMTP_PORT=${SMTP_PORT}
- SMTP_USER=${SMTP_USER}
- SMTP_PASS=${SMTP_PASS}
- FROM_EMAIL=${FROM_EMAIL}
- TO_EMAIL=${TO_EMAIL}
restart: unless-stopped