blob: a1090ecb9e35f302f8227ec47b9985ce0b2ffca3 (
plain)
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
|
services:
dnpm-etl-processor:
image: dnpm-elt-processor:latest
env_file:
- ./env-sample.env
depends_on:
- db
networks:
- dnpm_processor
ports:
- "${MONITORING_HTTP_PORT:-8080}:8080"
db:
image: mariadb:10
environment:
MARIADB_DATABASE: ${MARIADB_DB}
MARIADB_USER: ${MARIADB_USER}
MARIADB_PASSWORD: ${MARIADB_USER_PW}
MARIADB_ROOT_PASSWORD: ${MARIADB_ROOT_PW}
ports:
- "3306:3306"
networks:
- dnpm_processor
networks:
dnpm_processor: {}
|