adoroszlai commented on code in PR #49:
URL: https://github.com/apache/ozone-docker/pull/49#discussion_r3199837526


##########
QUICKSTART.md:
##########
@@ -0,0 +1,276 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+
+# Apache Ozone Quick Start
+
+Get started with Apache Ozone in 5 minutes using a single-container setup with 
the AWS S3 CLI.
+
+## What is the Quickstart Image?
+
+The quickstart image is a single-container version of Apache Ozone that runs 
all services (SCM, OM, DataNode, S3 Gateway, Recon, HttpFS) in one container. 
It's designed for:
+
+- Quick development and testing
+- Learning Ozone functionality
+- Demos and POCs
+- Local S3-compatible storage
+
+> **Note**: For production deployments, use the [multi-container 
setup](docker-compose.yaml) with separate containers for each service.
+
+## Prerequisites
+
+- Docker installed
+- AWS CLI installed (optional, for S3 testing)
+  - macOS: `brew install awscli`
+  - pip: `pip install awscli`
+
+## Quick Start
+
+### Step 1: Start Ozone
+
+```bash
+docker run -d \
+  --name ozone \
+  -p 9876:9876 \
+  -p 9874:9874 \
+  -p 19864:19864 \
+  -p 9878:9878 \
+  -p 9888:9888 \
+  -p 14000:14000 \
+  -v ozone-metadata:/data/metadata \
+  -v ozone-hdds:/data/hdds \
+  -v ozone-logs:/var/log/hadoop \
+  apache/ozone-quickstart:latest

Review Comment:
   Created the `all-in-one` branch from `slim`.  Commits in these branches do 
not automatically publish Docker image.  This way we can have an `all-in-one` 
image for each Ozone version, e.g. by creating `ozone-2.1.0-all-in-one` branch 
for 2.1.0.  We use the same pattern for other variants, too.



-- 
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]

Reply via email to