-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcompose.yml
37 lines (36 loc) · 954 Bytes
/
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
include:
- compose.infrastructure.yml
- compose.services.yml
- compose.profiling.yml
services:
easypay-service:
image: easypay-service:latest
hostname: easypay-service
container_name: easypay-service
build:
context: .
dockerfile: ./easypay-service/src/main/docker/Dockerfile
args:
UID: ${UID:-1000}
GID: ${GID:-1000}
environment:
CONFIG_SERVER_URL: http://config-server:8888
SPRING_PROFILES_ACTIVE: default,docker
depends_on:
config-server:
condition: service_healthy
discovery-server:
condition: service_healthy
postgres-easypay:
condition: service_healthy
healthcheck:
test: curl --fail http://localhost:8080/actuator/health
interval: 5s
timeout: 4s
retries: 10
start_period: 5s
entrypoint:
- java
- -cp
- app:app/lib/*
- com.worldline.easypay.EasypayServiceApplication