-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathapp.yml
21 lines (21 loc) · 950 Bytes
/
app.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
version: '2'
services:
managementportal-app:
image: managementportal
environment:
- SPRING_PROFILES_ACTIVE=prod,api-docs
- SPRING_DATASOURCE_URL=jdbc:postgresql://managementportal-postgresql:5432/managementportal
- SPRING_DATASOURCE_USERNAME=radarbase
- SPRING_DATASOURCE_PASSWORD=radarbase
- SPRING_LIQUIBASE_CONTEXTS=dev #includes testing_data, remove for production builds
- MANAGEMENTPORTAL_FRONTEND_CLIENT_SECRET=secret
- JHIPSTER_SLEEP=10 # gives time for the database to boot before the application
- JAVA_OPTS=-Xmx512m # maximum heap size for the JVM running ManagementPortal, increase this as necessary
ports:
- 8080:8080
volumes:
- ./etc:/mp-includes
managementportal-postgresql:
extends:
file: postgresql.yml
service: managementportal-postgresql