-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
48 lines (43 loc) · 990 Bytes
/
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
---
version: "3.7"
services:
angular:
command: ng serve --host 0.0.0.0
container_name: angular
image: ${APP}-angular:${APP_VERSION}
ports:
- 8883:4200
volumes:
- ./services/${APP}-angular:/srv/${APP}-angular
elm:
command: elm-app start
container_name: elm
image: ${APP}-elm:${APP_VERSION}
ports:
- 8882:3000
volumes:
- ./services/${APP}-elm:/srv/${APP}-elm
ember:
command: ember serve
container_name: ember
image: ${APP}-ember:${APP_VERSION}
ports:
- 8881:4200
volumes:
- ./services/${APP}-ember:/srv/${APP}-ember
react:
command: npm start
container_name: react
image: ${APP}-react:${APP_VERSION}
ports:
- 8888:3000
volumes:
- ./services/${APP}-react:/srv/${APP}-react
vue:
command: yarn serve
container_name: vue
image: ${APP}-vue:${APP_VERSION}
ports:
- 8880:8080
volumes:
- ./services/${APP}-vue:/srv/${APP}-vue