Minimum setup to test StarRocks? (Docker compose yaml?)

Is there a way to setup a small single-node setup of StarRocks?

I’d like to load a small subset of our data and see if it will execute our complex queries.

Ideally I’d like to test from within Docker rather than having to do a full deployment on Kubernetes.

You can use a starrocks/allin1-ubuntu docker image.

https://docs.starrocks.io/docs/quick_start/shared-nothing/#launch-starrocks

docker run -p 9030:9030 -p 8030:8030 -p 8040:8040 -itd \
--name quickstart starrocks/allin1-ubuntu