generated from moja-global/Import-Me
-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathdocker-compose.yml
40 lines (40 loc) · 1.13 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
version: "3"
services:
flint.example.api:
build:
context: ./flint.cloud/local/rest_api_flint.example
dockerfile: Dockerfile
ports:
- "8080:8080"
container_name: flint.example.api
volumes:
- ./flint.cloud/local/rest_api_flint.example/output:/server/output
- ./flint.cloud/local/rest_api_flint.example/config:/server/config
flint.gcbm.api:
build:
context: ./flint.cloud/local/rest_api_gcbm/
dockerfile: Dockerfile
ports:
- "8081:8080"
container_name: flint.gcbm.api
volumes:
- ./flint.cloud/local/rest_api_gcbm/output:/server/output
- ./flint.cloud/local/rest_api_gcbm/config:/server/config
flint.ui:
build:
context: ./flint.ui
dockerfile: Dockerfile
ports:
- "8000:80"
container_name: flint.ui
volumes:
- ./flint.ui:/usr/src/app/flint.ui
- ./flint.cloud/local/rest_api_flint.example/output:/server/output
- /usr/src/app/flint.ui/node_modules
# storybook:
# container_name: storybook
# ports:
# - "6006:6006"
# build:
# context: ./flint.ui
# dockerfile: ./.storybook/Dockerfile