|
@@ -16,8 +16,10 @@ WARNING:
|
|
|
|
|
|
|
|
# Supported tags and respective `Dockerfile` links
|
|
# 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
|
|
# Quick reference
|
|
|
|
|
|
|
@@ -31,7 +33,7 @@ WARNING:
|
|
|
[Convertigo](https://github.com/convertigo/docker)
|
|
[Convertigo](https://github.com/convertigo/docker)
|
|
|
|
|
|
|
|
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
|
|
- **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**:
|
|
- **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))
|
|
[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))
|
|
@@ -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
|
|
wget https://raw.githubusercontent.com/convertigo/docker/master/compose/mbaas/docker-compose.yml
|
|
|
docker-compose up -d
|
|
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
|
|
# License
|
|
|
|
|
|
|
|
Convertigo Community Edition MBaaS image is licenced under [AGPL 3.0](http://www.gnu.org/licenses/agpl-3.0.html)
|
|
Convertigo Community Edition MBaaS image is licenced under [AGPL 3.0](http://www.gnu.org/licenses/agpl-3.0.html)
|