Forráskód Böngészése

Add docker commands to README (#18)

Klaudiusz Dembler 3 éve
szülő
commit
5af9fcf7a4
1 módosított fájl, 11 hozzáadás és 1 törlés
  1. 11 1
      README.md

+ 11 - 1
README.md

@@ -19,4 +19,14 @@ Orion requires a MongoDB instance to work properly. The following env variables
 
 #### Docker
 
-For ease of deployment the app was dockerized. There's also the `docker-compose.yml` which will be the easiest to deploy as it contains the Orion and MongoDB and also sets all the required parameters. 
+For ease of deployment the app was dockerized. There's also the `docker-compose.yml` which will be the easiest to deploy as it contains the Orion and MongoDB and also sets all the required parameters.
+
+First you will need to build the `orion` image:
+```shell
+docker build --tag orion .
+```
+
+Then you can run the `docker-compose` with Orion and MongoDB:
+```shell
+docker-compose up
+```