Skip to content

Commit

Permalink
docs: update docker hub repo references
Browse files Browse the repository at this point in the history
  • Loading branch information
Aeneas Rekkas (arekkas) committed Feb 11, 2017
1 parent 868a02b commit b08d521
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,18 @@ If you do not understand what that all of this means, ask in our [chat channel](

**Starting the host** is easiest with docker. The host process handles HTTP requests and is backed by a database.
Read how to install docker on [Linux](https://docs.docker.com/linux/), [OSX](https://docs.docker.com/mac/) or
[Windows](https://docs.docker.com/windows/). Hydra is available on [Docker Hub](https://hub.docker.com/r/oryam/hydra/).
[Windows](https://docs.docker.com/windows/). Hydra is available on [Docker Hub](https://hub.docker.com/r/oryd/hydra/).

You can use Hydra without a database, but be aware that restarting, scaling
or stopping the container will **lose all data**:

```
$ docker run -d --name my-hydra -p 4444:4444 oryam/hydra
$ docker run -d --name my-hydra -p 4444:4444 oryd/hydra
ec91228cb105db315553499c81918258f52cee9636ea2a4821bdb8226872f54b
```

*Note: We had to create a new docker hub repository. Tags prior to 0.7.5 are available [here](https://hub.docker.com/r/ory-am/hydra/).*

**Using the client command line interface:** You can ssh into the hydra container
and execute the hydra command from there:

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ services:
- HYDRA_CLIENT_ID=admin
- HYDRA_CLIENT_SECRET=demo-password
- NODE_TLS_REJECT_UNAUTHORIZED=0
image: oryam/hydra-idp-react:0.1.0
image: oryd/hydra-idp-react:0.1.1
links:
- hydra
ports:
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ to verify user consent allowing you to use Hydra with any authentication endpoin
Hydra incorporates best practices in the area of the web service technology:

1. Hydra ships as a single binary for all popular platforms including Linux, OSX and Windows, without any additional
dependencies. For further simplicity, Hydra is available as a [Docker Image](https://hub.docker.com/r/oryam/hydra/).
dependencies. For further simplicity, Hydra is available as a [Docker Image](https://hub.docker.com/r/oryd/hydra/).
2. Hydra is built security first: architecture and work flows are designed to neutralize various common (OWASP TOP TEN)
and uncommon attack vectors. [Learn more](https://ory-am.gitbooks.io/hydra/content/basics/security.html).
3. Hydra has a low CPU and memory footprint, short start up times and a CLI with developers in mind.
Expand Down
6 changes: 4 additions & 2 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,18 @@ You can install Hydra using multiple methods.
Installing, configuring and running Hydra is easiest with docker. The host process
handles HTTP requests and is backed by a database.
Read how to install docker on [Linux](https://docs.docker.com/linux/), [OSX](https://docs.docker.com/mac/) or
[Windows](https://docs.docker.com/windows/). Hydra is available on [Docker Hub](https://hub.docker.com/r/oryam/hydra/).
[Windows](https://docs.docker.com/windows/). Hydra is available on [Docker Hub](https://hub.docker.com/r/oryd/hydra/).

In this minimalistic example, we will use Hydra without a database. Bee aware that restarting, scaling
or stopping the container will **lose all the data**.

```
$ docker run -d --name my-hydra -p 4444:4444 oryam/hydra
$ docker run -d --name my-hydra -p 4444:4444 oryd/hydra
ec91228cb105db315553499c81918258f52cee9636ea2a4821bdb8226872f54b
```

*Note: We had to create a new docker hub repository. Tags prior to 0.7.5 are available [here](https://hub.docker.com/r/ory-am/hydra/).*

Now, you should be able to open [https://localhost:4444](https://localhost:4444). If asked, accept the self signed
certificate in your browser.

Expand Down

0 comments on commit b08d521

Please sign in to comment.