https://github.com/StarRocks/demo/blob/master/deploy/docker-compose/docker-compose.yml
Line 22 for fe health check error:
test: ["CMD", "curl", "-f", "http://localhost:9030"]
shuld be:
test: 'curl -f -u root: -s -o /dev/null http://localhost:8030'
or
test: 'mysql -h127.0.0.1 -uroot -P 9030 -e "show frontends\G" |grep "Alive: true"'