Nix all the things
All checks were successful
Build and Deploy / build-and-push (push) Successful in 2m36s

This commit is contained in:
2025-07-25 22:41:56 -06:00
parent 8cf1d5c2e1
commit 20b38c614a
5 changed files with 130 additions and 41 deletions

View File

@@ -1,14 +1,16 @@
services:
app:
image: ${IMAGE}
image: ${IMAGE:-atashdotdev:latest}
ports:
- "${APP_PORT}:4321"
- "${APP_PORT:-4321}:4321"
environment:
NODE_ENV: production
SMTP_HOST: ${SMTP_HOST}
SMTP_PORT: ${SMTP_PORT}
SMTP_USER: ${SMTP_USER}
SMTP_PASSWORD: ${SMTP_PASSWORD}
FROM_EMAIL: ${FROM_EMAIL}
TO_EMAIL: ${TO_EMAIL}
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