-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
38 lines (38 loc) · 940 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
name: support-rest
services:
webapp:
image: demo-api:local
build:
context: ./
dockerfile: Dockerfile
ports:
- "9090:8080"
#command: "--port 9083"
environment:
- SPRING_PROFILES_ACTIVE=local
cpus: 0.2
mem_limit: 1024m
webapp-aot:
image: demo-aot-api:local
build:
context: ./
dockerfile: Dockerfile_aot
ports:
- "9091:8080"
#command: "--port 9083"
environment:
- SPRING_PROFILES_ACTIVE=local
cpus: 0.2
mem_limit: 1024m
webapp-cds:
image: demo-cds-api:local
build:
context: ./
dockerfile: Dockerfile_cds
ports:
- "9092:8080"
#command: "--port 9083"
environment:
- SPRING_PROFILES_ACTIVE=local
cpus: 0.2
mem_limit: 1024m