-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (36 loc) · 1003 Bytes
/
docker-compose.yml
File metadata and controls
40 lines (36 loc) · 1003 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
40
version: "3.7"
services:
smid_db:
image: breedbase/smid_db:v1.01
depends_on:
- smid_db_postgres
- selenium
container_name: smid_db
ports:
- 8088:8088
- 25:25
volumes:
- type: bind
source: ${HOME}/docker/smid_db/smmid_local.conf
target: /home/production/SMMID/smmid_local.conf
- type: bind
source: ${HOME}/docker/smid_db/tmp
target: /home/production/tmp
- type: bind
source: ${HOME}/docker/smid_db/images
target: /home/production/SMMID/root/images
- type: bind
source: ${HOME}/docker/cxgn/smmid
target: /home/production/SMMID
smid_db_postgres:
image: breedbase/breedbase_pg12.4:v0.5
container_name: smid-db-postgres
volumes:
- type: bind
source: ${HOME}/docker/smid_db/pgdata
target: /var/lib/postgresql/data
selenium:
image: selenium/standalone-firefox-debug
container_name: selenium
ports:
- 5900:5900