Skip to content

Commit 7f38378

Browse files
committed
Red Panda images will be pulled from Dockerhub instead of docker.redpanda.com to allow by-passing rate limiting by logging into Dockerhub
1 parent 7e025e0 commit 7f38378

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

framework/components/dockercompose/chip_ingress_set/docker-compose.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,10 @@ services:
4343
retries: 10
4444

4545
redpanda-0:
46-
# using a specific version of the redpanda image to exclude potentially breaking changes
47-
image: docker.redpanda.com/redpandadata/redpanda:v24.3.16
46+
# modified from the original:
47+
# - pin point a specific version of the redpanda image to exclude potentially breaking changes
48+
# - pull image from dockerhub instead of docker.redpanda.com
49+
image: redpandadata/redpanda:v24.3.16
4850
container_name: redpanda-0
4951
hostname: redpanda-0
5052
command:
@@ -74,9 +76,12 @@ services:
7476
start_period: 1s
7577

7678
redpanda-console:
77-
# using a specific version of the console image to ensure compatibility, because v3.x.x uses incompatible configuration format
79+
7880
container_name: redpanda-console
79-
image: docker.redpanda.com/redpandadata/console:v2.8.6
81+
# modified from the original:
82+
# - pin point a specific version of the console image to ensure compatibility, because v3.x.x uses incompatible configuration format
83+
# - pull image from dockerhub instead of docker.redpanda.com
84+
image: redpandadata/console:v2.8.6
8085
entrypoint: /bin/sh
8186
command: -c 'echo "$$CONSOLE_CONFIG_FILE" > /tmp/config.yml; /app/console'
8287
environment:

0 commit comments

Comments
 (0)