diff --git a/README.md b/README.md index 4e71fe8c58b..607ad5673af 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/docker-compose.yml b/docker-compose.yml index adf5732c9dd..05d972afa66 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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: diff --git a/docs/README.md b/docs/README.md index 9da1cf0a4fe..d68b0da3bb5 100644 --- a/docs/README.md +++ b/docs/README.md @@ -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. diff --git a/docs/install.md b/docs/install.md index 1a6035743ea..d699ccfdd9b 100644 --- a/docs/install.md +++ b/docs/install.md @@ -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.