-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yml
29 lines (29 loc) · 1 KB
/
app.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
# This configuration is intended for development purpose, it's **your** responsibility to harden it for production
name: challengue
services:
app:
image: challengue
environment:
- _JAVA_OPTIONS=-Xmx512m -Xms256m
- SPRING_PROFILES_ACTIVE=prod,api-docs
- MANAGEMENT_PROMETHEUS_METRICS_EXPORT_ENABLED=true
- SPRING_DATASOURCE_URL=jdbc:mysql://mysql:3306/challengue?useUnicode=true&characterEncoding=utf8&useSSL=false&useLegacyDatetimeCode=false&createDatabaseIfNotExist=true
- SPRING_LIQUIBASE_URL=jdbc:mysql://mysql:3306/challengue?useUnicode=true&characterEncoding=utf8&useSSL=false&useLegacyDatetimeCode=false&createDatabaseIfNotExist=true
ports:
- 127.0.0.1:8080:8080
healthcheck:
test:
- CMD
- curl
- -f
- http://localhost:8080/management/health
interval: 5s
timeout: 5s
retries: 40
depends_on:
mysql:
condition: service_healthy
mysql:
extends:
file: ./mysql.yml
service: mysql