From 8113e05e136fd27196c388a42565a401fd487f10 Mon Sep 17 00:00:00 2001 From: Zois Pagoulatos Date: Fri, 5 Oct 2018 09:48:25 +0200 Subject: [PATCH] Update readme to fix broker dockerhub links --- README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index c8c0299..06286ad 100644 --- a/README.md +++ b/README.md @@ -1,29 +1,29 @@ # Ubuntu and Alpine Docker images which use the Chaperone process manager -This repository is used to build several base-iamges which use the +This repository is used to build several base-images which use the [Chaperone](http://garywiz.github.io/chaperone/guide/chap-intro.html) lightweight process manager. Several images are included based upon Ubuntu 14.04: * chaperone-baseimage (A framework for Chaperone-based development. On - [Docker Hub as chaperone-baseimage](https://registry.hub.docker.com/u/chapdev/chaperone-baseimage). + [Docker Hub as chaperone-baseimage](https://registry.hub.docker.com/r/chapdev/chaperone-baseimage). * chaperone-lamp (A LAMP image managed by Chaperone. On - [Docker Hub as chaperone-lamp](https://registry.hub.docker.com/u/chapdev/chaperone-lamp). + [Docker Hub as chaperone-lamp](https://registry.hub.docker.com/r/chapdev/chaperone-lamp). * chaperone-lemp (A LEMP image with Nginx instead of Apache, managed by Chaperone. On - [Docker Hub as chaperone-lemp](https://registry.hub.docker.com/u/chapdev/chaperone-lemp). + [Docker Hub as chaperone-lemp](https://registry.hub.docker.com/r/chapdev/chaperone-lemp). * chaperone-apache (An Apache-only image, managed by Chaperone. On - [Docker Hub as chaperone-lemp](https://registry.hub.docker.com/u/chapdev/chaperone-apache). + [Docker Hub as chaperone-lemp](https://registry.hub.docker.com/r/chapdev/chaperone-apache). In addition, these images are designed for leaner deployments, and are based upon Alpine Linux: * chaperone-alpinebase (A 55MB Alpine Linux image including Python3, managed by Chaperone. On - [Docker Hub as chaperone-alpinebase](https://registry.hub.docker.com/u/chapdev/chaperone-alpinebase). + [Docker Hub as chaperone-alpinebase](https://registry.hub.docker.com/r/chapdev/chaperone-alpinebase). * chaperone-alpinejava (A 210MB Alpine image containing Oracle Java 8 and Python3, managed by Chaperone. On - [Docker Hub as chaperone-alpinejava](https://registry.hub.docker.com/u/chapdev/chaperone-alpinejava). + [Docker Hub as chaperone-alpinejava](https://registry.hub.docker.com/r/chapdev/chaperone-alpinejava). * alpine-nginx-php (A 75MB Alpine image containing Nginx, PHP, Python3, managed by Chaperone. On - [Docker Hub as alpine-nginx-php](https://registry.hub.docker.com/u/chapdev/alpine-nginx-php). + [Docker Hub as alpine-nginx-php](https://registry.hub.docker.com/r/chapdev/alpine-nginx-php). * alpine-nginx-django (A 87MB Apine image containing Nginx, uWSGI, Python3, and Django 1.9, managed by Chaperone. On - [Docker Hub as alpine-nginx-django](https://registry.hub.docker.com/u/chapdev/alpine-nginx-django). + [Docker Hub as alpine-nginx-django](https://registry.hub.docker.com/r/chapdev/alpine-nginx-django). Chaperone is a lightweight process manager specifically designed as an ENTRYPOINT for Docker containers that runs as PID 1. As a single controlling process, it provides: @@ -47,8 +47,8 @@ for production. *Please* [submit issues](https://github.com/garywiz/chaperone-d ## Try it out -All of these images work the same way. To get a quick idea of how things work, try the LAMP image and create your own -userspace development directory. It's best if you do this *as a normal user* that is a member of the docker group, since +All of these images work the same way. To get a quick idea of how things work, try the LAMP image and create your own +userspace development directory. It's best if you do this *as a normal user* that is a member of the docker group, since that will give you a good idea of how the userspace development model works. First, get the `chaplocal` script, a quick script which allows you to create userspace development "home directories": @@ -73,7 +73,7 @@ Images also support a `get-help` feature so you can find out about the version y you can simply say: docker run -i --rm chapdev/chaperone-alpinejava --task get-help - + We still have more work to do on these images, and feedback would be great. This approach has solved a lot of problems for us.