Files
atashdotdev/docker-compose.yml
Atridad Lahiji 11c4e61e79
All checks were successful
Build and Deploy / build-and-push (push) Successful in 2m47s
Changed some config
2025-12-22 12:23:25 -07:00

19 lines
560 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:-}
PUBLIC_STATUS_TEXT: ${PUBLIC_STATUS_TEXT:-"Accepting new clients"}
PUBLIC_STATUS_COLOR: ${PUBLIC_STATUS_COLOR:-green}
restart: unless-stopped