-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
60 lines (59 loc) · 1.41 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
version: "3.9"
services:
java:
image: drugbank-sample-apps/java
build:
context: .
dockerfile: ./java/db-app/Dockerfile
ports:
- "8080:8080"
volumes:
- ./java/db-app/pom.xml:/usr/src/app/pom.xml
- ./java/db-app/src:/usr/src/app/src
nodejs-jwt:
image: drugbank-sample-apps/nodejs-jwt
build:
context: .
dockerfile: ./nodejs-JWT/Dockerfile
ports:
- "8080:8080"
volumes:
- ./nodejs-JWT/package.json:/usr/src/app/package.json
- ./nodejs-JWT/package-lock.json:/usr/src/app/package-lock.json
nodejs:
image: drugbank-sample-apps/nodejs
build:
context: .
dockerfile: ./nodejs/Dockerfile
ports:
- "8080:8080"
volumes:
- ./nodejs/package.json:/usr/src/app/package.json
- ./nodejs/package-lock.json:/usr/src/app/package-lock.json
php:
image: drugbank-sample-apps/php
build:
context: .
dockerfile: ./php/Dockerfile
ports:
- "8080:8080"
volumes:
- ./php:/usr/src/app
python:
image: drugbank-sample-apps/python
build:
context: .
dockerfile: ./python/Dockerfile
ports:
- "8080:8080"
volumes:
- ./python/requirements.txt:/usr/src/app/requirements.txt
ruby:
image: drugbank-sample-apps/ruby
build:
context: .
dockerfile: ./ruby/Dockerfile
ports:
- "8080:8080"
volumes:
- ./ruby:/usr/src/app