forked from ga4gh/vrs-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (32 loc) · 892 Bytes
/
docker-compose.yml
File metadata and controls
35 lines (32 loc) · 892 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
services:
seqrepo:
image: biocommons/seqrepo:2024-12-20
volumes:
- seqrepo_vol:/usr/local/share/seqrepo
seqrepo-rest-service:
# Test: curl http://localhost:5000/seqrepo/1/sequence/refseq:NM_000551.3
image: biocommons/seqrepo-rest-service:0.2.2
volumes:
- seqrepo_vol:/usr/local/share/seqrepo
depends_on:
- seqrepo
command: seqrepo-rest-service -w /usr/local/share/seqrepo/2024-12-20
network_mode: bridge
ports:
- 5000:5000
uta:
# Test:
# psql -XAt postgres://anonymous@localhost/uta -c 'select count(*) from uta_20241220.transcript'
# 314227
image: biocommons/uta:uta_20241220
environment:
- POSTGRES_PASSWORD=some-password-that-you-make-up
volumes:
- uta_vol:/var/lib/postgresql/data
ports:
- 5432:5432
volumes:
seqrepo_vol:
external: true
uta_vol:
external: true