-- command to run hazelcast and management-center on docker
(run in background mode)
docker-compose -f <path_to_file>/hazelcast-docker-compose.yml up -d

note - make sure to replace the <path_to_file> with the folder path where you have placed the 'hazelcast-docker-compose.yml' configuration file

-- command to check if containers are successfully started or not
docker ps -a

-- command to stop the containers
docker-compose -f <path_to_file>/hazelcast-docker-compose.yml stop

-- command to remove the stopped containers
docker-compose -f <path_to_file>/hazelcast-docker-compose.yml rm -f
