Files
atashdotdev/docker-compose.yml
Atridad Lahiji 2630071315
All checks were successful
Build and Deploy / build-and-push (push) Successful in 2m37s
pls
2025-12-22 12:37:07 -07:00

19 lines
532 B
YAML

services:
app:
image: ${IMAGE:-atashdotdev:latest}
ports:
- "${APP_PORT:-4321}:4321"
environment:
NODE_ENV: production
HOST: 0.0.0.0
PORT: 4321
SMTP_HOST: ${SMTP_HOST:-}
SMTP_PORT: ${SMTP_PORT:-587}
SMTP_USER: ${SMTP_USER:-}
SMTP_PASSWORD: ${SMTP_PASSWORD:-}
FROM_EMAIL: ${FROM_EMAIL:-noreply@atash.dev}
TO_EMAIL: ${TO_EMAIL:-}
STATUS_TEXT: ${STATUS_TEXT:-"Accepting new clients"}
STATUS_COLOR: ${STATUS_COLOR:-green}
restart: unless-stopped