From a55b71fca4be5ff3c32a0cb718a18b970ac2bc92 Mon Sep 17 00:00:00 2001 From: TekFik <66404301+TekFik@users.noreply.github.com> Date: Thu, 4 Jun 2020 11:36:05 +0530 Subject: [PATCH] added install.txt --- install.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 install.txt diff --git a/install.txt b/install.txt new file mode 100644 index 0000000..adfc4ee --- /dev/null +++ b/install.txt @@ -0,0 +1,17 @@ +- Build image + $ docker build -t chrome-web . + +- View images + $ docker images + +- Execute the following command to lunch the chrome container + $ docker run --name chrome --privileged -p 3000:3000 -d chrome-web + +- Browse Chrome inside the container with the following URL + http://localhost:3000 + + + Refer to following article if you want to get a ready made container without building your own. + https://www.tekfik.com/kb/devops/google-chrome-on-docker-container + +