priyeshkaratha commented on code in PR #9080: URL: https://github.com/apache/ozone/pull/9080#discussion_r2390073096
########## README.md: ########## @@ -50,18 +50,33 @@ Latest release artifacts (source release and binary packages) are [available](ht ## Quick start -### Run Ozone from published Docker image +### Run Ozone from Docker Compose -The easiest way to start a cluster with docker is: +The easiest way to start a cluster with docker is to use docker compose: +- Obtain Ozone’s sample Docker Compose configuration: +```bash +curl -O https://raw.githubusercontent.com/apache/ozone-docker/refs/heads/latest/docker-compose.yaml ``` -docker run -p 9878:9878 apache/ozone + +- Start the cluster Review Comment: Its better to mention the use of environment variable OZONE_REPLICATION_FACTOR here. If you want to bring cluster with replication factor 3 we may need to do OZONE_REPLICATION_FACTOR=3 , docker compose up -d --scale datanode=3 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
