|
2 | 2 | # Drycc Postgres |
3 | 3 |
|
4 | 4 | [](https://travis-ci.org/drycc/postgres) |
5 | | -[](https://quay.io/repository/drycc/postgres) |
6 | 5 |
|
7 | 6 | Drycc (pronounced DAY-iss) Workflow is an open source Platform as a Service (PaaS) that adds a developer-friendly layer to any [Kubernetes](http://kubernetes.io) cluster, making it easy to deploy and manage applications on your own servers. |
8 | 7 |
|
@@ -47,15 +46,15 @@ This project has a [Makefile](https://github.com/drycc/postgres/blob/master/Make |
47 | 46 |
|
48 | 47 | * `DRYCC_REGISTRY` - A Docker registry that you have push access to and your Kubernetes cluster can pull from |
49 | 48 | * If this is [Docker Hub](https://hub.docker.com/), leave this variable empty |
50 | | - * Otherwise, ensure it has a trailing `/`. For example, if you're using [Quay.io](https://quay.io), use `quay.io/` |
| 49 | + * Otherwise, ensure it has a trailing `/` |
51 | 50 | * `IMAGE_PREFIX` - The organization in the Docker repository. This defaults to `drycc`, but if you don't have access to that organization, set this to one you have push access to. |
52 | 51 | * `SHORT_NAME` (optional) - The name of the image. This defaults to `postgres` |
53 | 52 | * `VERSION` (optional) - The tag of the Docker image. This defaults to the current Git SHA (the output of `git rev-parse --short HEAD`) |
54 | 53 |
|
55 | | -Assuming you have these variables set correctly, run `make docker-build` to build the new image, and `make docker-push` to push it. Here is an example command that would push to `quay.io/arschles/postgres:devel`: |
| 54 | +Assuming you have these variables set correctly, run `make docker-build` to build the new image, and `make docker-push` to push it. Here is an example command that would push to `example.com/arschles/postgres:devel`: |
56 | 55 |
|
57 | 56 | ```console |
58 | | -export DRYCC_REGISTRY=quay.io/ |
| 57 | +export DRYCC_REGISTRY=example.com/ |
59 | 58 | export IMAGE_PREFIX=arschles |
60 | 59 | export VERSION=devel |
61 | 60 | make docker-build docker-push |
|
0 commit comments