Skip to content

Commit 720b569

Browse files
authored
chore: pull images from custom registry (default compose file) (#524)
1 parent dddfbbc commit 720b569

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Used by docker-compose.yml
22
IMAGE_NAME=ghcr.io/hyperdxio/hyperdx
3+
IMAGE_NAME_HDX=ghcr.hyperdx.io/hyperdxio/hyperdx
34
LOCAL_IMAGE_NAME=ghcr.io/hyperdxio/hyperdx-local
45
LOCAL_IMAGE_NAME_DOCKERHUB=hyperdx/hyperdx-local
56
IMAGE_VERSION=1.10.0

docker-compose.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3'
22
services:
33
go-parser:
4-
image: ${IMAGE_NAME}:${IMAGE_VERSION}-go-parser
4+
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-go-parser
55
container_name: hdx-oss-go-parser
66
environment:
77
AGGREGATOR_API_URL: 'http://aggregator:8001'
@@ -16,7 +16,7 @@ services:
1616
networks:
1717
- internal
1818
miner:
19-
image: ${IMAGE_NAME}:${IMAGE_VERSION}-miner
19+
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-miner
2020
container_name: hdx-oss-miner
2121
environment:
2222
HYPERDX_API_KEY: ${HYPERDX_API_KEY}
@@ -30,7 +30,7 @@ services:
3030
networks:
3131
- internal
3232
hostmetrics:
33-
image: ${IMAGE_NAME}:${IMAGE_VERSION}-hostmetrics
33+
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-hostmetrics
3434
container_name: hdx-oss-hostmetrics
3535
environment:
3636
HYPERDX_API_KEY: ${HYPERDX_API_KEY}
@@ -40,7 +40,7 @@ services:
4040
networks:
4141
- internal
4242
ingestor:
43-
image: ${IMAGE_NAME}:${IMAGE_VERSION}-ingestor
43+
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-ingestor
4444
container_name: hdx-oss-ingestor
4545
volumes:
4646
- .volumes/ingestor_data:/var/lib/vector
@@ -76,7 +76,7 @@ services:
7676
networks:
7777
- internal
7878
otel-collector:
79-
image: ${IMAGE_NAME}:${IMAGE_VERSION}-otel-collector
79+
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-otel-collector
8080
container_name: hdx-oss-otel-collector
8181
environment:
8282
HYPERDX_LOG_LEVEL: ${HYPERDX_LOG_LEVEL}
@@ -94,7 +94,7 @@ services:
9494
networks:
9595
- internal
9696
aggregator:
97-
image: ${IMAGE_NAME}:${IMAGE_VERSION}-api
97+
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-api
9898
container_name: hdx-oss-aggregator
9999
ports:
100100
- 8001:8001
@@ -118,7 +118,7 @@ services:
118118
- redis
119119
- ch-server
120120
task-check-alerts:
121-
image: ${IMAGE_NAME}:${IMAGE_VERSION}-api
121+
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-api
122122
container_name: hdx-oss-task-check-alerts
123123
entrypoint: 'node'
124124
command: './build/tasks/index.js check-alerts'
@@ -150,7 +150,7 @@ services:
150150
- db
151151
- redis
152152
api:
153-
image: ${IMAGE_NAME}:${IMAGE_VERSION}-api
153+
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-api
154154
container_name: hdx-oss-api
155155
ports:
156156
- ${HYPERDX_API_PORT}:${HYPERDX_API_PORT}
@@ -185,7 +185,7 @@ services:
185185
- db
186186
- redis
187187
app:
188-
image: ${IMAGE_NAME}:${IMAGE_VERSION}-app
188+
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-app
189189
container_name: hdx-oss-app
190190
ports:
191191
- ${HYPERDX_APP_PORT}:${HYPERDX_APP_PORT}

0 commit comments

Comments
 (0)