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