-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
43 lines (39 loc) · 951 Bytes
/
docker-compose.dev.yml
File metadata and controls
43 lines (39 loc) · 951 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
42
43
name: RoundReview_DevStack
services:
roundreview_app:
container_name: "roundreview_app"
build: .
restart: unless-stopped
ports:
- "8080:8080"
volumes:
- rr_sessions:/app/flask_session:rw
- ./database:/app/database:rw
- ./app:/app/app
env_file:
- ./envs/rr-app.env
roundreview_pdf_notary_bot:
container_name: "roundreview_pdf_notary_bot"
build: ./plugins/pdf-notary-bot
restart: unless-stopped
ports:
- "8081:8081"
volumes:
- ./plugins/pdf-notary-bot:/app
- ./envs:/certs
- rr_signed_pdfs:/signed_pdfs
env_file:
- ./envs/rr-pdf-notary-bot.env
roundreview_example_bot:
container_name: "roundreview_example_bot"
build: ./plugins/example-bot
restart: unless-stopped
ports:
- "8082:8082"
volumes:
- ./plugins/example-bot:/app
environment:
- DEBUG=1
volumes:
rr_sessions:
rr_signed_pdfs: