diff options
author | rohmhatre | 2017-11-26 00:25:02 +0530 |
---|---|---|
committer | ankitjavalkar | 2018-01-04 11:37:20 +0530 |
commit | 0713c60a5ad4b71d4a2050d13cf30afaf37d935b (patch) | |
tree | c7cb207ab05a2197fd8bdd13d1d559345a2b29ef /docker/README.md | |
parent | 6f2e29a067cbeaf88b8ea478bb7c24fe8772180a (diff) | |
download | online_test-0713c60a5ad4b71d4a2050d13cf30afaf37d935b.tar.gz online_test-0713c60a5ad4b71d4a2050d13cf30afaf37d935b.tar.bz2 online_test-0713c60a5ad4b71d4a2050d13cf30afaf37d935b.zip |
Added docker compose configuration
Diffstat (limited to 'docker/README.md')
-rw-r--r-- | docker/README.md | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/docker/README.md b/docker/README.md new file mode 100644 index 0000000..34e30da --- /dev/null +++ b/docker/README.md @@ -0,0 +1,30 @@ +#### Pre-Requisites + + 1. Install Docker https://docs.docker.com/engine/installation/ + 2. Install Docker Compose https://docs.docker.com/compose/install/#install-compose + 3. install git + + +#### Help for deploying Yaksh interface. + + - To get help while deployment + $ make help + + - Clone yaksh form github: + $ make clone + + - Build docker images: + $ make build + + - To run containers: + $ make start + + - You need to create super a user to work with yaksh: + $ make createsuperuser + + - Now Your interface is ready. You can access it using browser just go to http://localhost:8000 + + - Clean your docker containers: + $ make clean + + - other utilities like restart, tail, status |