-
Notifications
You must be signed in to change notification settings - Fork 12
/
docker-compose-build-services.yaml
38 lines (38 loc) · 1.11 KB
/
docker-compose-build-services.yaml
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
version: '3.8'
services:
monolith-spring-boot:
image: my-registry/my-project/monolith-springboot:0.0.1-SNAPSHOT
ports:
- '8081:8080'
environment:
SPRING_PROFILES_ACTIVE: inmemory
monolith-quarkus:
image: my-registry/my-project/monolith-quarkus:0.0.1-SNAPSHOT
ports:
- '8082:8080'
environment:
QUARKUS_PROFILE: db-in-memory
monolith-quarkus-native:
image: my-registry/my-project/monolith-quarkus-native:0.0.1-SNAPSHOT
ports:
- '8083:8080'
environment:
QUARKUS_PROFILE: db-in-memory
microservice-person:
image: my-registry/my-project/microservice-person-quarkus-native:0.0.1-SNAPSHOT
ports:
- '8084:8083'
environment:
QUARKUS_PROFILE: db-in-memory
microservice-address:
image: my-registry/my-project/microservice-address-quarkus-native:0.0.1-SNAPSHOT
ports:
- '8085:8082'
environment:
QUARKUS_PROFILE: db-in-memory
microservice-account:
image: my-registry/my-project/microservice-account-quarkus-native:0.0.1-SNAPSHOT
ports:
- '8086:8081'
environment:
QUARKUS_PROFILE: db-in-memory