-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdocker-compose.override.yml
More file actions
42 lines (40 loc) · 1.02 KB
/
docker-compose.override.yml
File metadata and controls
42 lines (40 loc) · 1.02 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
services:
breedbase:
volumes:
- type: bind
source: ./sgn_local.conf
target: /home/production/cxgn/sgn/sgn_local.conf
- type: bind
source: ./cxgn
target: /home/production/cxgn
# include .git dir that tracks all submodules in cxgn
- type: bind
source: .git
target: /home/production/.git
- shared_data:/downloads
environment:
MODE: 'DEVELOPMENT'
PGDATABASE: breedbase
PGHOST: breedbase_db
PGPASSWORD: postgres
PGUSER: postgres
SGN_TEST_SERVER: http://breedbase:3010
SGN_REMOTE_SERVER_ADDR: selenium
DBIC_TRACE: 0
selenium:
container_name: selenium
image: selenium/standalone-firefox-debug
volumes:
- type: bind
source: ./cxgn/sgn/t/data
target: /home/production/cxgn/sgn/t/data
- shared_data:/downloads
ports:
- 5900:5900
- 4444:4444
breedbase_db:
environment:
POSTGRES_DB: breedbase
POSTGRES_PASSWORD: postgres
volumes:
shared_data: