From cbe8e6370219d0f96a227c395101e542eb456101 Mon Sep 17 00:00:00 2001 From: jay Date: Sat, 18 Feb 2023 12:32:08 +0530 Subject: [PATCH 1/2] updated readme file with docker installation procedure --- README.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 96ef661e..c918e8e6 100644 --- a/README.md +++ b/README.md @@ -95,10 +95,31 @@ ``` npm config set proxy http://proxy:port ``` -8. Now to connect to dev server at [http://127.0.0.1:6003](http://127.0.0.1:6003) (for serving frontend) +8. to connect to dev server at [http://127.0.0.1:6003](http://127.0.0.1:6003) (for serving frontend) ``` yarn run dev ``` +## How to Install projects using Docker +1.Install Docker from: +... +`https://docs.docker.com/docker-for-mac/install/` for MAC installation. +... +https://docs.docker.com/desktop/install/windows-install/ for Windows installation +... +sudo apt install docker.io for Ubuntu Installation. +... +If you have account in Docker, you can login or other end we can create new account in Docker. Before start using Docker we must login in Docker. +2. Now,Clone the CloudCv repository. + git clone https://github.com/Cloud-CV/CloudCV +3. Then, change into the compose folder, this folder will be the location where you enter all following commands: + cd CloudCV/compose +4. Use the latest version of Docker images: + docker-compose pull +5. Launch the Containers +6. You can stop the Compose stack by running: + docker-compose stop +7. You can stop and remove all containers by running: + docker-compose down ## Contribution guidelines From 1a2b41c3a1472df7c9a3f6f10b545e6f311e81d8 Mon Sep 17 00:00:00 2001 From: jay Date: Sat, 18 Feb 2023 12:38:15 +0530 Subject: [PATCH 2/2] updated readme file with docker installation procedure --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c918e8e6..4f63a0bc 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ https://docs.docker.com/desktop/install/windows-install/ for Windows installatio ... sudo apt install docker.io for Ubuntu Installation. ... -If you have account in Docker, you can login or other end we can create new account in Docker. Before start using Docker we must login in Docker. +If you already have account in Docker, you can login or other end we can create new account in Docker. Before start using Docker we must login in Docker. 2. Now,Clone the CloudCv repository. git clone https://github.com/Cloud-CV/CloudCV 3. Then, change into the compose folder, this folder will be the location where you enter all following commands: