Originally from the User Slack
@Stuart: Does anyone know if you can get speed up scylla container start up time? I’m looking to use testcontainers
to power some unit tests and waiting for the scylla image to start can take up to 30 seconds
@Felipe_Cardeneti_Mendes: docker run --rm <image> --disable-version-check --skip-wait-for-gossip-to-settle 0
This should be instant for single node (well, for multi-node as well, but then you probably want gossip to settle)
@Stuart: perfect this cut down startup time by 25 seconds