19 lines
463 B
YAML
19 lines
463 B
YAML
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- SITE_TITLE=${SITE_TITLE:-Support}
|
|
- SMTP_HOST=${SMTP_HOST}
|
|
- SMTP_PORT=${SMTP_PORT:-587}
|
|
- SMTP_USER=${SMTP_USER}
|
|
- SMTP_PASSWORD=${SMTP_PASSWORD}
|
|
- SMTP_FROM=${SMTP_FROM}
|
|
volumes:
|
|
- ./FAQ.txt:/app/public/FAQ.txt:ro
|
|
- ./favicon.ico:/app/public/favicon.ico:ro
|
|
restart: unless-stopped
|