Skip to content

Commit

Permalink
docs: move postmand images from dockerhub to quay.io (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
allisson authored Oct 2, 2021
1 parent 89579cd commit d3b8a4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ To run the server it is necessary to have a database available from postgresql,
#### Docker

```bash
docker run --rm --env POSTMAND_DATABASE_URL='postgres://user:[email protected]:5432/postmand?sslmode=disable' allisson/postmand migrate # create database schema
docker run --rm --env POSTMAND_DATABASE_URL='postgres://user:[email protected]:5432/postmand?sslmode=disable' quay.io/allisson/postmand migrate # create database schema
```

```bash
docker run -p 8000:8000 -p 8001:8001 --env POSTMAND_DATABASE_URL='postgres://user:[email protected]:5432/postmand?sslmode=disable' allisson/postmand server # run the server
docker run -p 8000:8000 -p 8001:8001 --env POSTMAND_DATABASE_URL='postgres://user:[email protected]:5432/postmand?sslmode=disable' quay.io/allisson/postmand server # run the server
```

#### Local
Expand All @@ -54,7 +54,7 @@ The worker is responsible to delivery content to the webhooks.
#### Docker

```bash
docker run --env POSTMAND_DATABASE_URL='postgres://user:[email protected]:5432/postmand?sslmode=disable' allisson/postmand worker
docker run --env POSTMAND_DATABASE_URL='postgres://user:[email protected]:5432/postmand?sslmode=disable' quay.io/allisson/postmand worker
```

#### Local
Expand Down

0 comments on commit d3b8a4d

Please sign in to comment.