mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 13:22:57 +00:00
chore: use greptime dockerhub image (#6865)
Signed-off-by: liyang <daviderli614@gmail.com>
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
version: '3.8'
|
||||
services:
|
||||
kafka:
|
||||
image: public.ecr.aws/i8k6a5e1/bitnami/kafka:3.9.0-debian-12-r1
|
||||
image: greptime/kafka:3.9.0-debian-12-r1
|
||||
container_name: kafka
|
||||
ports:
|
||||
- 9092:9092
|
||||
|
||||
@@ -363,9 +363,9 @@ pub fn setup_mysql(mysql_port: u16, mysql_version: Option<&str>) {
|
||||
}
|
||||
|
||||
let mysql_image = if let Some(mysql_version) = mysql_version {
|
||||
format!("public.ecr.aws/i8k6a5e1/bitnami/mysql:{mysql_version}")
|
||||
format!("greptime/mysql:{mysql_version}")
|
||||
} else {
|
||||
"public.ecr.aws/i8k6a5e1/bitnami/mysql:5.7".to_string()
|
||||
"greptime/mysql:5.7".to_string()
|
||||
};
|
||||
let mysql_password = "admin";
|
||||
let mysql_user = "greptimedb";
|
||||
|
||||
Reference in New Issue
Block a user