feat: faqs and docker
This commit is contained in:
18
docker-compose.yaml
Normal file
18
docker-compose.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
Reference in New Issue
Block a user