-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yml
42 lines (42 loc) · 1.01 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
combinedb:
#build: db/.
image: ncsulibrariesdli/combine_pg:latest
environment:
- POSTGRES_PASSWORD=gherD42#dl5
restart: always
lentilapp:
#Uncomment below line to build new image
#build: lentil/.
image: ncsulibrariesdli/combine_lentil:latest
ports:
- "3000:3000"
links:
- combinedb:mydb
volumes:
- /vagrant/archive/lentil-store:/lentil-store
- /vagrant/lentil:/src/lentil
restart: always
sfmapp:
image: gwul/sfm_app:latest
ports:
- "8000:80"
links:
- combinedb:db
volumes:
- /vagrant/archive/sfm-store:/var/sfm
- /vagrant/sfm:/src/sfm
env_file:
- ./sfm/sfm_config.txt
restart: always
webconfig:
#Uncomment below line to build new image
#build: web-configuration-tool/.
image: ncsulibrariesdli/combine_webconfig:latest
ports:
- "8080:8080"
volumes:
- /vagrant/lentil:/src/lentil
- /vagrant/sfm:/src/sfm
- /vagrant/web-configuration-tool:/src/web-configuration-tool
- /vagrant/config_updates:/src/config_updates
restart: always