sergehuber commented on code in PR #472:
URL: https://github.com/apache/unomi/pull/472#discussion_r954914205


##########
manual/src/main/asciidoc/5-min-quickstart.adoc:
##########
@@ -11,12 +11,47 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 //
-=== Five Minutes QuickStart
+
+=== Quick start with Docker
+
+Begin by creating a `docker-compose.yml` file with the following content:
+
+[source]
+----
+version: '3.8'
+services:
+    elasticsearch:
+    image: docker.elastic.co/elasticsearch/elasticsearch:7.17.5
+    environment:
+        - discovery.type=single-node
+    ports:
+        - 9200:9200                    
+    unomi:
+    # Unomi version can be updated based on your needs
+    image: apache/unomi:2.0.0
+    environment:
+        - UNOMI_ELASTICSEARCH_ADDRESSES=elasticsearch:9200
+        - UNOMI_THIRDPARTY_PROVIDER1_IPADDRESSES=0.0.0.0/0,::1,127.0.0.1
+    ports:
+        - 8181:8181
+        - 9443:9443
+        - 8102:8102
+    links:
+        - elasticsearch
+    depends_on:
+        - elasticsearch 
+----
+
+From the same folder, start the environment using docker-compose up and wait 
for the startup to complete.

Review Comment:
   ```suggestion
   From the same folder, start the environment using `docker-compose up` and 
wait for the startup to complete.
   ```



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

Reply via email to