-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (35 loc) · 931 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (35 loc) · 931 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
version: "3.7"
services:
breedbase:
volumes:
- webdata:/home/production/volume
- type: bind
source: ./sgn_local.conf
target: /home/production/cxgn/sgn/sgn_local.conf
- type: bind
source: ./fernbase
target: /home/production/cxgn/fernbase
- type: bind
source: /export/prod/public_fern
target: /home/production/public
- type: bind
source: /export/prod/blast/databases/current
target: /home/production/blast
ports:
- 8080:8080
- 25:25
image: breedbase/breedbase:v0.49
## depends_on:
# - breedbase_db
container_name: breedbase_web
# breedbase_db:
# volumes:
# - dbdata:/var/lib/postgresql/data
# image: postgres:12.7
# container_name: breedbase_db
# healthcheck:
# test: "pg_isready -U postgres -d $${POSTGRES_DB} || exit 1"
# interval: 10s
volumes:
webdata:
# dbdata: