You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@senssoft.apache.org by le...@apache.org on 2018/03/12 15:58:40 UTC

[26/40] incubator-senssoft git commit: Updated Docker instructions

Updated Docker instructions


Project: http://git-wip-us.apache.org/repos/asf/incubator-senssoft/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-senssoft/commit/b59bdd40
Tree: http://git-wip-us.apache.org/repos/asf/incubator-senssoft/tree/b59bdd40
Diff: http://git-wip-us.apache.org/repos/asf/incubator-senssoft/diff/b59bdd40

Branch: refs/heads/asf-site
Commit: b59bdd405da69fc718699c9f8185b46780502348
Parents: 381a6c5
Author: msbeard <ms...@apache.org>
Authored: Thu Aug 24 13:57:08 2017 -0400
Committer: msbeard <ms...@apache.org>
Committed: Thu Aug 24 13:57:08 2017 -0400

----------------------------------------------------------------------
 docker/README.md | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-senssoft/blob/b59bdd40/docker/README.md
----------------------------------------------------------------------
diff --git a/docker/README.md b/docker/README.md
index c5a015b..186c1ec 100644
--- a/docker/README.md
+++ b/docker/README.md
@@ -4,10 +4,9 @@ How to Build Docker Containers
 1. Install [``Docker``](http://docker.com)
 2. Install ``docker-compose``.
     ```
-    $ mkdir env
-    $ virtualenv env
-    $ source env/bin/activate 
-    $ pip install -e .[docker]
+    $ python3 -m venv env
+    $ source env/bin/activate
+    $ pip install docker-compose
     ```
 3. Build and run all ``Docker`` containers.
     ```
@@ -17,14 +16,14 @@ How to Build Docker Containers
     ```
     $ docker-compose up -d site
     # Note: site container is instrumented w/ userale; all userale logs will be sent to the
-    # elasticsearch docker container. 
+    # elasticsearch docker container.
     ```
 5. Verify the deployment by navigating to ``Kibana`` in your favorite browser.
     ```sh
     http://localhost:5601
     ```
-    
+
 6. Stop all the containers.
     ```sh
-    $ docker-compose stop 
-    ```
\ No newline at end of file
+    $ docker-compose stop
+    ```