From da53c9d25f0f6fcc970e16df8d91d7b15706ce91 Mon Sep 17 00:00:00 2001 From: Niggl1999 Date: Tue, 2 Jun 2020 15:51:05 +0200 Subject: [PATCH] Changed proposed naming scheme for the docker image name --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 766c5ff..d61f4ff 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,9 @@ Other useful commands: ### Build the Container yourself (and run it) 1. Clone the git repo 2. Open the cloned repo's folder in a shell of your choice (as long as it supports Docker) -3. Tell Docker to build the app under the name "taskboard" with `docker build -t taskboard .` -4. Tell Docker to run the app on port 8080 with `docker run -p 8080:80 taskboard` +3. Tell Docker to build the app under the name "taskboard" with `docker build -t taskboard_backend .` +4. Tell Docker to run the app on port 8080 with `docker run -p 8080:80 taskboard_backend` Other useful commands: -* Run detached: `docker run -d -p 8080:80 taskboard` -* Run under specified name: `docker run -p 8080:80 --name myapp taskboard` \ No newline at end of file +* Run detached: `docker run -d -p 8080:80 taskboard_backend` +* Run under specified name: `docker run -p 8080:80 --name backend taskboard_backend` \ No newline at end of file