File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ build-local:
66
66
docker build ./docker/ingestor -t ${IMAGE_NAME} :${LATEST_VERSION} -ingestor --target prod &
67
67
docker build ./docker/otel-collector -t ${IMAGE_NAME} :${LATEST_VERSION} -otel-collector --target prod &
68
68
docker build --build-arg CODE_VERSION=${LATEST_VERSION} . -f ./packages/miner/Dockerfile -t ${IMAGE_NAME} :${LATEST_VERSION} -miner --target prod &
69
+ docker build --build-arg CODE_VERSION=${LATEST_VERSION} . -f ./packages/go-parser/Dockerfile -t ${IMAGE_NAME} :${LATEST_VERSION} -go-parser &
69
70
docker build \
70
71
--build-arg CODE_VERSION=${LATEST_VERSION} \
71
72
--build-arg PORT=${HYPERDX_API_PORT} \
@@ -88,6 +89,7 @@ release:
88
89
docker buildx build --platform ${BUILD_PLATFORMS} ./docker/ingestor -t ${IMAGE_NAME} :${LATEST_VERSION} -ingestor --target prod --push &
89
90
docker buildx build --platform ${BUILD_PLATFORMS} ./docker/otel-collector -t ${IMAGE_NAME} :${LATEST_VERSION} -otel-collector --target prod --push &
90
91
docker buildx build --build-arg CODE_VERSION=${LATEST_VERSION} --platform ${BUILD_PLATFORMS} . -f ./packages/miner/Dockerfile -t ${IMAGE_NAME} :${LATEST_VERSION} -miner --target prod --push &
92
+ docker buildx build --build-arg CODE_VERSION=${LATEST_VERSION} --platform ${BUILD_PLATFORMS} . -f ./packages/go-parser/Dockerfile -t ${IMAGE_NAME} :${LATEST_VERSION} -go-parser --push &
91
93
docker buildx build \
92
94
--build-arg CODE_VERSION=${LATEST_VERSION} \
93
95
--build-arg PORT=${HYPERDX_API_PORT} \
Original file line number Diff line number Diff line change 1
1
version : ' 3'
2
2
services :
3
+ go-parser :
4
+ image : ${IMAGE_NAME}:${IMAGE_VERSION}-go-parser
5
+ container_name : hdx-oss-go-parser
6
+ environment :
7
+ AGGREGATOR_API_URL : ' http://aggregator:8001'
8
+ HYPERDX_API_KEY : ${HYPERDX_API_KEY}
9
+ HYPERDX_LOG_LEVEL : ${HYPERDX_LOG_LEVEL}
10
+ OTEL_EXPORTER_OTLP_ENDPOINT : http://otel-collector:4318
11
+ OTEL_LOG_LEVEL : ${HYPERDX_LOG_LEVEL}
12
+ OTEL_SERVICE_NAME : hdx-oss-go-parser
13
+ PORT : 7777
14
+ ports :
15
+ - 7777:7777
16
+ networks :
17
+ - internal
3
18
miner :
4
19
image : ${IMAGE_NAME}:${IMAGE_VERSION}-miner
5
20
container_name : hdx-oss-miner
@@ -33,6 +48,7 @@ services:
33
48
- 8002:8002 # http-generic
34
49
- 8686:8686 # healthcheck
35
50
environment :
51
+ ENABLE_GO_PARSER : ' false'
36
52
RUST_BACKTRACE : full
37
53
VECTOR_LOG : ${HYPERDX_LOG_LEVEL}
38
54
VECTOR_OPENSSL_LEGACY_PROVIDER : ' false'
You can’t perform that action at this time.
0 commit comments