Skip to content

Commit

Permalink
Use project-specific name in docker deploy instructions.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaladay committed Aug 19, 2022
1 parent a34a7a3 commit 2b89dc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions DEPLOYING.md
Expand Up @@ -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
```

<sub>_* 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`._</sub><br>
<sub>_* 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`._</sub><br>

<div align="right">(<a href="#readme-top">back to top</a>)</div>

Expand Down

0 comments on commit 2b89dc9

Please sign in to comment.