File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed
framework/components/dockercompose/chip_ingress_set Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments