-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker-compose-app.yml
More file actions
27 lines (27 loc) · 986 Bytes
/
docker-compose-app.yml
File metadata and controls
27 lines (27 loc) · 986 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
# start the app container with this compose configuration
# you can build the app image by running:
# mvn clean install
# then run the following command to start the app with all
# dependencies:
# docker-compose -f docker-compose.yml -f docker-compose-app.yml up -d --build
version: "3.1"
services:
app:
image: local/dzhw/metadatamanagement:latest-local-minified
environment:
- SPRING_PROFILES_ACTIVE=local,minified
- SPRING_DATA_MONGODB_HOST=mongodb
- METADATAMANAGEMENT_ELASTICSEARCHANGULARCLIENT_URL=http://elasticsearch:9200
- SPRING_ELASTICSEARCH_REST_URIS_0=http://elasticsearch:9200
- SPRING_MAIL_HOST=maildev
- SPRING_MAIL_PORT=25
- METADATAMANAGEMENT_DARA_ENDPOINT=${DARA_ENDPOINT}
- METADATAMANAGEMENT_DARA_USERNAME=${DARA_USERNAME}
- METADATAMANAGEMENT_DARA_PASSWORD=${DARA_PASSWORD}
ports:
- "8080:8080"
depends_on:
- mongodb
- elasticsearch
- maildev
- identity_provider