diff options
| author | Jakub Lidke | 2023-08-25 12:50:29 +0200 |
|---|---|---|
| committer | Jakub Lidke | 2023-08-25 12:50:29 +0200 |
| commit | bbea48322fa5a24ff61eef25ed84f4966bf49c42 (patch) | |
| tree | f4a870fa9afb4a2fd4fd0559d1903ac5fc0c2c65 /deploy | |
| parent | 480f165c7b7fb8b80326083af3b04f08d5b2be9b (diff) | |
chore: added deployment port mapping for monitoring access
Diffstat (limited to 'deploy')
| -rw-r--r-- | deploy/docker-compose.yaml | 4 | ||||
| -rw-r--r-- | deploy/env-sample.env | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/deploy/docker-compose.yaml b/deploy/docker-compose.yaml index 30c647c..8dccd4c 100644 --- a/deploy/docker-compose.yaml +++ b/deploy/docker-compose.yaml @@ -1,4 +1,4 @@ -version: '3.7' + services: dnpm-etl-processor: @@ -9,6 +9,8 @@ services: - db networks: - dnpm_processor + ports: + - "${MONITORING_HTTP_PORT:-8080}:8080" db: image: mariadb:10 diff --git a/deploy/env-sample.env b/deploy/env-sample.env index fd95b63..1589096 100644 --- a/deploy/env-sample.env +++ b/deploy/env-sample.env @@ -1,5 +1,5 @@ # monitoring access port -SERVER_PORT=8000 +MONITORING_HTTP_PORT=8088 # GPAS or BUILDIN APP_PSEUDONYMIZE_GENERATOR=BUILDIN |
