Files
atashdotdev/docker-compose.yml
Atridad Lahiji 20b38c614a
All checks were successful
Build and Deploy / build-and-push (push) Successful in 2m36s
Nix all the things
2025-07-25 22:41:56 -06:00

17 lines
430 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:-}
restart: unless-stopped