forked from Informatievlaanderen/VSDS-LDESServer4J
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
39 lines (39 loc) · 897 Bytes
/
docker-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
38
39
version: "3.3"
services:
ldes-server:
container_name: basic_ldes-server
image: ldes/ldes-server
environment:
- SPRING_CONFIG_LOCATION=/config/
- PYROSCOPE_CONFIGURATION_FILE=/config/pyroscope.properties
volumes:
- ./docker-compose/server.config.yml:/config/application.yml:ro
- ./docker-compose/pyroscope.properties:/config/pyroscope.properties:ro
ports:
- "8080:8080"
- "8087:8087"
- "8088:8088"
- "8089:8089"
networks:
- ldes
depends_on:
- postgres
postgres:
container_name: ldes-postgres
image: postgres:14-alpine
ports:
- 5432:5432
environment:
- POSTGRES_PASSWORD=admin
- POSTGRES_USER=admin
- POSTGRES_DB=test
networks:
- ldes
pyroscope:
image: grafana/pyroscope:latest
ports:
- 4040:4040
networks:
- ldes
networks:
ldes: