Commit fa161137118542efd3e235497f0f2d5540aba0f3

Authored by George Vlahavas
1 parent 126dcc793b

Add KIBANA_PORT and GRAFANA_PORT variables

Showing 2 changed files with 5 additions and 0 deletions

docker-compose-jfrog.yml View file @ fa16113
... ... @@ -83,6 +83,8 @@
83 83 - "APP_ENV=${APP_ENV}"
84 84 - "APP_DEBUG=${APP_DEBUG}"
85 85 - "APP_URL=${APP_URL}"
  86 + - "KIBANA_PORT=${KIBANA_PORT}"
  87 + - "GRAFANA_PORT=${GRAFANA_PORT}"
86 88 - "LOG_CHANNEL=${LOG_CHANNEL}"
87 89 - "DB_CONNECTION=${DB_CONNECTION}"
88 90 - "DB_HOST=${DB_HOST}"
kea_testing.groovy View file @ fa16113
... ... @@ -22,6 +22,9 @@
22 22 APP_ENV = "production"
23 23 APP_DEBUG = "true"
24 24 APP_URL = "http://116.203.166.220:13880"
  25 +
  26 + KIBANA_PORT = "5611"
  27 + GRAFANA_PORT = "3001"
25 28  
26 29 LOG_CHANNEL = "stack"
27 30