-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-development.yml
More file actions
42 lines (39 loc) · 1019 Bytes
/
docker-compose-development.yml
File metadata and controls
42 lines (39 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
42
services:
user-dashboard:
environment:
- FLASK_TEMPLATES_AUTO_RELOAD=True
- FLASK_TESTING=True
develop:
watch:
- action: sync+restart
path: ./edge-vm/webapp
target: /app/webapp
ignore:
- templates/
- static/
- action: sync
path: ./edge-vm/webapp/templates
target: /app/webapp/templates
- action: sync
path: ./edge-vm/webapp/static
target: /app/webapp/static
- action: rebuild
path: ./edge-vm/requirements.txt
trino:
depends_on: !reset []
task-apis:
develop:
watch:
- action: sync+restart
path: ./task-apis/api
target: /app/api
- action: rebuild
path: ./task-apis/requirements.txt
test-task:
develop:
watch:
- action: sync+restart
path: ./task-base/main.py
target: /app/main.py
- action: rebuild
path: ./task-base/requirements.txt