-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathdocker-compose-dev.yml
More file actions
46 lines (43 loc) · 958 Bytes
/
docker-compose-dev.yml
File metadata and controls
46 lines (43 loc) · 958 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
44
45
version: '3'
services:
dev-mode:
extends:
file: docker-compose.yml
service: rest-variantvalidator
depends_on:
- rv-vdb
- rv-vvta
- rv-seqrepo
volumes:
- rest_vv_dev_volume:/app
- vv-logs:/usr/local/share/logs # Mount volume for logs
- seqdata:/usr/local/share/seqdata # Mount volume for sequence data
ports:
- "5001:5000"
- "5050:5050"
- "8000:8000"
- "9000:9000"
expose:
- "5001" # Expose ports for external access
- "5050"
- "8000"
- "8080"
volumes:
rest_vv_dev_volume:
driver: local
driver_opts:
type: 'none'
o: 'bind'
device: '${PWD}'
seqdata:
driver: local
driver_opts:
type: 'none'
o: 'bind'
device: '${HOME}/variantvalidator_data/seqdata'
vv-logs:
driver: local
driver_opts:
type: 'none'
o: 'bind'
device: '${HOME}/variantvalidator_data/logs'