chore(deps): bump + fix: typo in docker commands

This commit is contained in:
Liyas Thomas
2020-12-31 17:22:58 +05:30
parent 9e3083cc5d
commit 603a888e2e
3 changed files with 8 additions and 8 deletions

View File

@@ -443,10 +443,10 @@ _Sample keys only works with the [production build](https://hoppscotch.io)._
docker pull hoppscotch/hoppscotch
#build
docker build -t hoppscotch:latest .
docker build -t hoppscotch/hoppscotch:latest .
#run
docker run -p 3000:3000 hoppscotch:latest
docker run -p 3000:3000 hoppscotch/hoppscotch:latest
```
<details>
@@ -459,10 +459,10 @@ docker run -p 3000:3000 hoppscotch:latest
docker pull liyasthomas/postwoman
#build
docker build -t postwoman:latest .
docker build -t liyasthomas/postwoman:latest .
#run
docker run -p 3000:3000 postwoman:latest
docker run -p 3000:3000 liyasthomas/postwoman:latest
```
---