From a39d5239bc24023f09ed8057628b9c7db743cdcd Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com>
Date: Mon, 30 Sep 2019 13:45:06 +0200
Subject: [PATCH] Added some detail to the readme

---
 README.rdoc | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/README.rdoc b/README.rdoc
index 11916d0..87f74a6 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -32,7 +32,12 @@ Just run the application with the following command.
      bundle exec ./bin/aethyr run
 
 == Using Docker
+
+    docker run --rm -i -v "$PWD/storage:/usr/src/app/storage" -v "$PWD/conf:/usr/src/app/conf" -v "$PWD/lib/aethyr/extensions/reactions:/usr/src/app/lib/aethyr/extensions/reactions" -t syncleus/aethyr:git bundle exec ./bin/aethyr_setup
+    docker run -p 8888:8888 -v "$PWD/storage:/usr/src/app/storage" -v "$PWD/conf:/usr/src/app/conf" -v "$PWD/lib/aethyr/extensions/reactions:/usr/src/app/lib/aethyr/extensions/reactions" --rm syncleus/aethyr:git
+
+== Building image
  
-    docker build -t syncleus/aethyr .
-    docker run --rm -i -v "$PWD/storage:/usr/src/app/storage" -v "$PWD/conf:/usr/src/app/conf" -v "$PWD/lib/aethyr/extensions/reactions:/usr/src/app/lib/aethyr/extensions/reactions" -t syncleus/aethyr bundle exec ./bin/aethyr_setup
-    docker run -p 8888:8888 -v "$PWD/storage:/usr/src/app/storage" -v "$PWD/conf:/usr/src/app/conf" -v "$PWD/lib/aethyr/extensions/reactions:/usr/src/app/lib/aethyr/extensions/reactions" --rm syncleus/aethyr
+    docker build -t syncleus/aethyr:git .
+    docker login # if not logged in
+    docker push syncleus/aethyr:git
-- 
GitLab