File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ REDISINSIGHT_PORT=8032
2727
2828POSTGRES_PORT=5432
2929POSTGRES_PASSWORD=opencodeco
30- PGADMIN_PORT=8034
30+ PGADMIN_PORT=8039
3131PGADMIN_EMAIL="opencodeco@domain.com"
3232PGADMIN_PASSWORD="opencodeco"
3333
Original file line number Diff line number Diff line change 11.env
2+ * /docker-compose.override.yml
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ receivers:
1212 http :
1313
1414exporters :
15- logging :
15+ debug :
1616 verbosity : detailed
1717 prometheus :
1818 endpoint : 0.0.0.0:9090
@@ -28,7 +28,7 @@ service:
2828 pipelines :
2929 traces :
3030 receivers : [otlp, jaeger]
31- exporters : [logging , otlp/jaeger]
31+ exporters : [debug , otlp/jaeger]
3232 metrics :
3333 receivers : [otlp, statsd]
34- exporters : [logging , prometheus]
34+ exporters : [debug , prometheus]
Original file line number Diff line number Diff line change @@ -106,4 +106,10 @@ if [ ! -f "${COMPONENT}/docker-compose.yml" ]; then
106106fi
107107
108108CMD=" ${@: 2} "
109- $CONTAINER_COMPOSE -f " ${COMPONENT} /docker-compose.yml" ${CMD:- up -d}
109+
110+ COMPOSE_FILES=" -f ${COMPONENT} /docker-compose.yml"
111+ if [ -f " ${COMPONENT} /docker-compose.override.yml" ]; then
112+ COMPOSE_FILES=" ${COMPOSE_FILES} -f ${COMPONENT} /docker-compose.override.yml"
113+ fi
114+
115+ $CONTAINER_COMPOSE $COMPOSE_FILES ${CMD:- up -d}
You can’t perform that action at this time.
0 commit comments