Run Neo4j cluster using neo4j-enterprise Docker image

Hi,

I'm trying to run Neo4j (5.6.0) on-prem cluster using the official neo4j:5.6.0-enterprise
in evaluation mode ATM. I'm using the following docker run command :

ExecStart=/usr/bin/docker run --rm --name neo4j \
    --publish=7474:7474 --publish=7687:7687 \
    --publish=5000:5000 --publish=6000:6000 \
    --publish=7000:7000 \
    --hostname=10.0.8.99 \
    --env NEO4J_dbms_cluster_discovery_endpoints=10.0.8.99,10.0.21.157 \
    --env NEO4J_server_default__listen__address=0.0.0.0 \
    --env NEO4J_ACCEPT_LICENSE_AGREEMENT=eval \
    neo4j:5.6.0-enterprise

The issue I'm facing is that the bolt & http listeners aren't up&running when I'm adding
this config dbms.cluster.discovery.endpoints. When I drop it, the Neo4j is up
but just with single server connected to the cluster.

Is it a limitation with evaluation license or just I'm doing something else wrong ?
Thanks.