Skip to content

Commit

Permalink
Run update.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
docker-library-bot committed Jan 6, 2018
1 parent 327555c commit 1f0758e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
24 changes: 21 additions & 3 deletions convertigo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`7.5.0`, `7.5`, `latest` (*7.5/7.5.0/Dockerfile*)](https://github.com/convertigo/docker/blob/c143ecb5aa888581cb128b7ac487aebf1418f3b3/7.5/7.5.0/Dockerfile)
- [`7.4.7`, `7.4` (*7.4/7.4.7/Dockerfile*)](https://github.com/convertigo/docker/blob/c143ecb5aa888581cb128b7ac487aebf1418f3b3/7.4/7.4.7/Dockerfile)
- [`7.5.0`, `7.5`, `latest` (*7.5/7.5.0/Dockerfile*)](https://github.com/convertigo/docker/blob/1b3f1092aae7fbfd1094fb169be1e74f0902a164/7.5/7.5.0/Dockerfile)
- [`7.5.0-alpine`, `7.5-alpine`, `alpine` (*7.5/7.5.0/alpine/Dockerfile*)](https://github.com/convertigo/docker/blob/1b3f1092aae7fbfd1094fb169be1e74f0902a164/7.5/7.5.0/alpine/Dockerfile)
- [`7.4.7`, `7.4` (*7.4/7.4.7/Dockerfile*)](https://github.com/convertigo/docker/blob/1b3f1092aae7fbfd1094fb169be1e74f0902a164/7.4/7.4.7/Dockerfile)
- [`7.4.7-alpine`, `7.4-alpine` (*7.4/7.4.7/alpine/Dockerfile*)](https://github.com/convertigo/docker/blob/1b3f1092aae7fbfd1094fb169be1e74f0902a164/7.4/7.4.7/alpine/Dockerfile)

# Quick reference

Expand All @@ -31,7 +33,7 @@ WARNING:
[Convertigo](https://github.com/convertigo/docker)

- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/convertigo/), [`arm32v7`](https://hub.docker.com/r/arm32v7/convertigo/), [`arm64v8`](https://hub.docker.com/r/arm64v8/convertigo/), [`i386`](https://hub.docker.com/r/i386/convertigo/)
[`amd64`](https://hub.docker.com/r/amd64/convertigo/), [`arm32v6`](https://hub.docker.com/r/arm32v6/convertigo/), [`arm32v7`](https://hub.docker.com/r/arm32v7/convertigo/), [`arm64v8`](https://hub.docker.com/r/arm64v8/convertigo/), [`i386`](https://hub.docker.com/r/i386/convertigo/)

- **Published image artifact details**:
[repo-info repo's `repos/convertigo/` directory](https://github.com/docker-library/repo-info/blob/master/repos/convertigo) ([history](https://github.com/docker-library/repo-info/commits/master/repos/convertigo))
Expand Down Expand Up @@ -162,6 +164,22 @@ You can use this [stack](https://github.com/convertigo/docker/blob/master/compos
wget https://raw.githubusercontent.com/convertigo/docker/master/compose/mbaas/docker-compose.yml
docker-compose up -d

# Image Variants

The `convertigo` images come in many flavors, each designed for a specific use case.

## `convertigo:<version>`

This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of.

## `convertigo:alpine`

This image is based on the popular [Alpine Linux project](http://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general.

This variant is highly recommended when final image size being as small as possible is desired. The main caveat to note is that it does use [musl libc](http://www.musl-libc.org) instead of [glibc and friends](http://www.etalabs.net/compare_libcs.html), so certain software might run into issues depending on the depth of their libc requirements. However, most software doesn't have an issue with this, so this variant is usually a very safe choice. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images.

To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar).

# License

Convertigo Community Edition MBaaS image is licenced under [AGPL 3.0](http://www.gnu.org/licenses/agpl-3.0.html)
Expand Down
2 changes: 2 additions & 0 deletions kong/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`0.12.0rc2-alpine` (*alpine/Dockerfile*)](https://github.com/Kong/docker-kong/blob/9f2d6a104dbf8b38cb8188429c17daef72f24196/alpine/Dockerfile)
- [`0.12.0rc2` (*centos/Dockerfile*)](https://github.com/Kong/docker-kong/blob/9f2d6a104dbf8b38cb8188429c17daef72f24196/centos/Dockerfile)
- [`0.11-alpine`, `0.11.2-alpine` (*alpine/Dockerfile*)](https://github.com/Kong/docker-kong/blob/2ed0fad88ed81623ea4afb2111033a9d87f3c03c/alpine/Dockerfile)
- [`0.11`, `0.11.2`, `latest` (*centos/Dockerfile*)](https://github.com/Kong/docker-kong/blob/2ed0fad88ed81623ea4afb2111033a9d87f3c03c/centos/Dockerfile)
- [`0.10`, `0.10.4` (*legacy/Dockerfile*)](https://github.com/Kong/docker-kong/blob/206d0a077068e191454c260ee772d2e5bbb4d050/legacy/Dockerfile)
Expand Down

0 comments on commit 1f0758e

Please sign in to comment.