Some checks failed
Docker Deploy / build-and-push (push) Has been cancelled
15 lines
335 B
YAML
15 lines
335 B
YAML
services:
|
|
app:
|
|
image: ${IMAGE}
|
|
ports:
|
|
- "${APP_PORT}: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}
|
|
restart: unless-stopped
|