Nix all the things
All checks were successful
Build and Deploy / build-and-push (push) Successful in 2m36s
All checks were successful
Build and Deploy / build-and-push (push) Successful in 2m36s
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user