-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml.example
More file actions
23 lines (23 loc) · 992 Bytes
/
docker-compose.yml.example
File metadata and controls
23 lines (23 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
version: '3.8'
services:
expressapp:
build: .
ports:
- "OUTSIDE-PORT-TO-USE:3000"
environment:
- TEMP_IMAGES_PATH=/Local-Images
- UPLOADED_PATH=/server/Local-Images
- NO_HTTPS=false
- MONGODB_URI=MONGODB-URI-HERE
- SECRET_FOR_TOKENS=YOUR SECRET HERE
- SECRET_FOR_REFRESH_TOKENS=YOUR SECRET HERE
- REFRESH_TOKEN_ENCRYPTION_KEY=YOUR SECRET HERE
- SMTP_SERVER=YOUR SMTP SERVER ADDRESS HERE
- SMTP_PORT=YOUR SMTP SERVER PORT HERE
- SMTP_USER=YOUR SMTP USER HERE
- SMTP_PASSWORD=YOUR SMTP USER PASSWORD HERE
- SMTP_EMAIL=YOUR SMTP EMAIL
- SS_MODERATION_EMAIL=MODERATION EMAIL HERE
- isInCI=false
volumes:
- DIRECTORY-TO-SAVE-IMAGES-TO:/server/Local-Images