-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
27 lines (27 loc) · 1.03 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
userservice:
image: slidewiki/userservice:latest-dev
restart: on-failure:5
expose:
- "80"
external_links:
- mongodb
environment:
- APPLICATION_PORT=80
- DATABASE_PORT=27017
- VIRTUAL_HOST=userservice.experimental.slidewiki.org
- LETSENCRYPT_HOST=userservice.experimental.slidewiki.org
- SMTP_PORT=25
- SMTP_HOST=localhost
# - SMTP_CLIENTNAME=
- SMTP_ENABLED=false
# - APIKEY=
- JWT_SERIAL=69aac7f95a9152cd4ae7667c80557c284e413d748cca4c5715b3f02020a5ae1b
- URL_PLATFORM=https://platform.experimental.slidewiki.org
- SERVICE_URL_ACTIVITIES=https://activitiesservice.experimental.slidewiki.org
- SERVICE_URL_DECK=https://deckservice.experimental.slidewiki.org
- DATABASE_URL=mongodb # use a url or the name, defined in the docker-compose file
- SECRET_REVIEW_KEY=friend
volumes:
- /data/slidewiki-deployment/docker-compose/providerConfig_experimental.json:/nodeApp/config.json:ro