-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
62 lines (59 loc) · 1.76 KB
/
docker-compose.yml
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
version: "3.7"
services:
breedbase:
image: breedbase/breedbase:v0.56
depends_on:
- breedbase_db
container_name: breedbase_web
ports:
- 8080:8080
- 25:25
volumes:
- type: bind
source: $HOME/ncsu.breedbase.org/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/public
target: /home/production/public
- type: bind
source: $HOME/images
target: /home/production/public/images
- type: bind
source: $HOME/ncsu.breedbase.org/covercropslogo_transparent.webp
target: /home/production/cxgn/sgn/static/img/covercropslogo_transparent.webp
- type: bind
source: /home/production/ncsu.breedbase.org/crontab
target: /etc/crontab
- type: bind
source: /home/production/ncsu.breedbase.org/covercrops
target: /home/production/cxgn/covercrops
- type: bind
source: /home/production/db_dumps
target: /db_dumps
breedbase_db:
image: breedbase/pg:latest
container_name: breedbase_db
# ports:
# - 5431:5432
volumes:
- type: bind
source: /home/production/pgdata
target: /var/lib/postgresql/data