forked from codingstrand/cider.breedbase.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
65 lines (62 loc) · 1.69 KB
/
docker-compose.yml
File metadata and controls
65 lines (62 loc) · 1.69 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
version: "3.7"
services:
breedbase:
image: breedbase/breedbase:v0.57
depends_on:
- breedbase_db
container_name: breedbase_web
ports:
- 8080:8080
- 25:25
volumes:
- type: bind
source: ${HOME}/cxgn_config/sgn_local.conf
target: /home/production/cxgn/sgn/sgn_local.conf
# - type: bind
# source: ${HOME}/empty_dump_20200313.sql
# target: /home/production/empty_dump_20200313.sql
- type: bind
source: ${HOME}/archive
target: /home/production/archive
- type: bind
source: ${HOME}/tmp
target: /home/production/tmp
- type: bind
source: ${HOME}/cache
target: /home/production/cache
- type: bind
source: ${HOME}/cluster
target: /home/production/cluster
- type: bind
source: ${HOME}/blast
target: /home/production/blast
- type: bind
source: ${HOME}/images
target: /home/production/images
- type: bind
source: ${HOME}/cider
target: /home/production/uiskin
- type: bind
source: ${HOME}/logs
target: /home/production/logs
- type: bind
source: ${HOME}/crontab
target: /etc/crontab
- type: bind
source: ${HOME}/db_dumps
target: /db_dumps
- type: bind
source: /home/production/sgn
target: /home/production/cxgn/sgn
breedbase_db:
image: breedbase/pg:latest
container_name: breedbase_db
# ports:
# - 5431:5432
volumes:
# - type: bind
# source: /home/production/db_dumps
# target: /home
- type: bind
source: /home/production/pgdata
target: /var/lib/postgresql/data