diff --git a/README.md b/README.md index 2f6afdd..c7ee3f9 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,10 @@ To have a website that caters all needs that a CSE UG has. ##### Installation : +1. Using docker: + check [here](./docs/docker.md) +2. Manual : * create a virtual environment and activate it (google it) * Install dependencies into it ```pip3 install -r requirements.txt``` or ```python -m pip install -r requirements.txt```. * Check out to develop branch. diff --git a/docs/docker.md b/docs/docker.md new file mode 100644 index 0000000..e85425f --- /dev/null +++ b/docs/docker.md @@ -0,0 +1,9 @@ +## Setup using Docker + + +### 1. Build Image: +`docker build --no-cache -t cse_hub .` + +### 2. Create and run container: +`docker run -dp 12345:12345 cse_hub` +