forked from synzen/MonitoRSS
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (40 loc) · 1019 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (40 loc) · 1019 Bytes
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
version: "3.5"
services:
drss-redis:
container_name: drss-redis-container
image: redis:alpine
# Uncomment below to hide redis logs
logging:
driver: none
drss-mongo:
container_name: drss-mongo-container
restart: on-failure:5
command: mongod --port 27017
# Uncomment below to hide mongo logs
logging:
driver: none
image: mongo:latest
volumes:
- 'db-data:/data/db'
drss-bot:
container_name: drss-bot-container
image: synzen/discord.rss-clone
restart: on-failure:10
environment:
- DRSS_BOT_TOKEN=
- DRSS_DATABASE_URI=mongodb://drss-mongo:27017/rss
drss-web:
container_name: drss-web-container
image: synzen/discord.rss-web
restart: on-failure:10
ports:
- "8081:8081"
environment:
- DRSS_DATABASE_URI=mongodb://drss-mongo:27017/rss
- DRSS_DATABASE_REDIS=
- DRSS_BOT_TOKEN=
- DRSS_BOT_REDIRECTURI=
- DRSS_BOT_CLIENTID=
- DRSS_BOT_CLIENTSECRET=
volumes:
db-data: