Skip to content

Commit

Permalink
chore: pull images from custom registry (default compose file) (#524)
Browse files Browse the repository at this point in the history
wrn14897 authored Dec 10, 2024

Verified

This commit was signed with the committer’s verified signature.
Julusian Julian Waller
1 parent dddfbbc commit 720b569
Showing 2 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Used by docker-compose.yml
IMAGE_NAME=ghcr.io/hyperdxio/hyperdx
IMAGE_NAME_HDX=ghcr.hyperdx.io/hyperdxio/hyperdx
LOCAL_IMAGE_NAME=ghcr.io/hyperdxio/hyperdx-local
LOCAL_IMAGE_NAME_DOCKERHUB=hyperdx/hyperdx-local
IMAGE_VERSION=1.10.0
18 changes: 9 additions & 9 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
go-parser:
image: ${IMAGE_NAME}:${IMAGE_VERSION}-go-parser
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-go-parser
container_name: hdx-oss-go-parser
environment:
AGGREGATOR_API_URL: 'http://aggregator:8001'
@@ -16,7 +16,7 @@ services:
networks:
- internal
miner:
image: ${IMAGE_NAME}:${IMAGE_VERSION}-miner
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-miner
container_name: hdx-oss-miner
environment:
HYPERDX_API_KEY: ${HYPERDX_API_KEY}
@@ -30,7 +30,7 @@ services:
networks:
- internal
hostmetrics:
image: ${IMAGE_NAME}:${IMAGE_VERSION}-hostmetrics
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-hostmetrics
container_name: hdx-oss-hostmetrics
environment:
HYPERDX_API_KEY: ${HYPERDX_API_KEY}
@@ -40,7 +40,7 @@ services:
networks:
- internal
ingestor:
image: ${IMAGE_NAME}:${IMAGE_VERSION}-ingestor
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-ingestor
container_name: hdx-oss-ingestor
volumes:
- .volumes/ingestor_data:/var/lib/vector
@@ -76,7 +76,7 @@ services:
networks:
- internal
otel-collector:
image: ${IMAGE_NAME}:${IMAGE_VERSION}-otel-collector
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-otel-collector
container_name: hdx-oss-otel-collector
environment:
HYPERDX_LOG_LEVEL: ${HYPERDX_LOG_LEVEL}
@@ -94,7 +94,7 @@ services:
networks:
- internal
aggregator:
image: ${IMAGE_NAME}:${IMAGE_VERSION}-api
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-api
container_name: hdx-oss-aggregator
ports:
- 8001:8001
@@ -118,7 +118,7 @@ services:
- redis
- ch-server
task-check-alerts:
image: ${IMAGE_NAME}:${IMAGE_VERSION}-api
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-api
container_name: hdx-oss-task-check-alerts
entrypoint: 'node'
command: './build/tasks/index.js check-alerts'
@@ -150,7 +150,7 @@ services:
- db
- redis
api:
image: ${IMAGE_NAME}:${IMAGE_VERSION}-api
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-api
container_name: hdx-oss-api
ports:
- ${HYPERDX_API_PORT}:${HYPERDX_API_PORT}
@@ -185,7 +185,7 @@ services:
- db
- redis
app:
image: ${IMAGE_NAME}:${IMAGE_VERSION}-app
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-app
container_name: hdx-oss-app
ports:
- ${HYPERDX_APP_PORT}:${HYPERDX_APP_PORT}

0 comments on commit 720b569

Please sign in to comment.