-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
31 lines (28 loc) · 800 Bytes
/
compose.yml
File metadata and controls
31 lines (28 loc) · 800 Bytes
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
version: "3.9"
services:
ticket-microservice:
build: .
container_name: ticket-microservice
hostname: ticket-microservice
ports:
- "4444:8080"
environment:
USERNAME_DATABASE: ${USERNAME_DATABASE}
PASSWORD_DATABASE: ${PASSWORD_DATABASE}
URL_EUREKA: ${URL_EUREKA}
IP_HOST: ${IP_HOST}
PORT_HOST: ${PORT_HOST}
URL_DATABASE: ${URL_DATABASE}
ticket-microservice-qa:
build: .
container_name: ticket-microservice-qa
hostname: ticket-microservice-qa
ports:
- "24444:8080"
environment:
USERNAME_DATABASE: ${USERNAME_DATABASE}
PASSWORD_DATABASE: ${PASSWORD_DATABASE_QA}
URL_EUREKA: ${URL_EUREKA_QA}
IP_HOST: ${IP_HOST}
PORT_HOST: ${PORT_HOST_QA}
URL_DATABASE: ${URL_DATABASE_QA}