diff --git a/DEPLOYING.md b/DEPLOYING.md index 77ff404..f436223 100644 --- a/DEPLOYING.md +++ b/DEPLOYING.md @@ -22,11 +22,11 @@ The **development** deployment can also use `docker-compose` in the same way. To manually use `docker` rather than `docker-compose`, run the following: ```shell -docker image build -t project . -docker run -it project +docker image build -t projectservice . +docker run -it projectservice ``` -_* Note: `-t project` and `-it project` may be changed to another tag name as desired, such as `-t developing_on_this` and `-it developing_on_this`._
+_* Note: `-t projectservice` and `-it projectservice` may be changed to another tag name as desired, such as `-t developing_on_this` and `-it developing_on_this`._
(back to top)