Run update.sh
This commit is contained in:
parent
96ca317957
commit
897f01e133
|
|
@ -104,14 +104,6 @@ The `elasticsearch` images come in many flavors, each designed for a specific us
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
## `elasticsearch:<version>-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
|
||||||
|
|
||||||
View [license information](https://github.com/elastic/elasticsearch/blob/6.4/licenses/ELASTIC-LICENSE.txt) for the software contained in this image.
|
View [license information](https://github.com/elastic/elasticsearch/blob/6.4/licenses/ELASTIC-LICENSE.txt) for the software contained in this image.
|
||||||
|
|
|
||||||
|
|
@ -77,6 +77,12 @@ $ docker run -d --name some-ghost -p 3001:2368 ghost
|
||||||
|
|
||||||
Then, access it via `http://localhost:3001` or `http://host-ip:3001` in a browser.
|
Then, access it via `http://localhost:3001` or `http://host-ip:3001` in a browser.
|
||||||
|
|
||||||
|
### Upgrading Ghost
|
||||||
|
|
||||||
|
You will want to ensure you are running the latest minor version (1.25.5 or 0.11.9) of Ghost before upgrading major versions. Otherwise, you may run into database errors.
|
||||||
|
|
||||||
|
For upgrading your Ghost container you will want to mount your data to the appropriate path in the predecessor container (see below): import your content from the admin panel, stop the container, and then re-mount your content to the successor container you are upgrading into; you can then export your content from the admin panel.
|
||||||
|
|
||||||
## Stateful
|
## Stateful
|
||||||
|
|
||||||
Mount your existing content. In this example we also use the Alpine base image.
|
Mount your existing content. In this example we also use the Alpine base image.
|
||||||
|
|
@ -93,23 +99,6 @@ $ docker run -d --name some-ghost -p 3001:2368 -v /path/to/ghost/blog:/var/lib/g
|
||||||
$ docker run -d --name some-ghost -p 3001:2368 -v /path/to/ghost/blog:/var/lib/ghost ghost:0.11-alpine
|
$ docker run -d --name some-ghost -p 3001:2368 -v /path/to/ghost/blog:/var/lib/ghost ghost:0.11-alpine
|
||||||
```
|
```
|
||||||
|
|
||||||
### Breaking changes
|
|
||||||
|
|
||||||
#### Ghost 1.x.x => Ghost 2.x.x
|
|
||||||
|
|
||||||
When upgrading from Ghost 1.x to Ghost 2.x, you must make sure you are already running the latest version of Ghost 1.x *before* upgrading to 2.x. Otherwise, you may run into database errors.
|
|
||||||
|
|
||||||
#### Ghost 0.11.x => Ghost 1.x.x
|
|
||||||
|
|
||||||
If you want to run Ghost 0.11.xx, be aware of the container's path difference:
|
|
||||||
|
|
||||||
- Ghost 1.x.x is: `/var/lib/ghost/content`
|
|
||||||
- Ghost 0.11.x is: `/var/lib/ghost`
|
|
||||||
|
|
||||||
### SQLite Database
|
|
||||||
|
|
||||||
This Docker image for Ghost uses SQLite. There is nothing special to configure.
|
|
||||||
|
|
||||||
### Docker Volume
|
### Docker Volume
|
||||||
|
|
||||||
Alternatively you can use a [data container](http://docs.docker.com/engine/tutorials/dockervolumes/) that has a volume that points to `/var/lib/ghost/content` (or /var/lib/ghost for 0.11.x) and then reference it:
|
Alternatively you can use a [data container](http://docs.docker.com/engine/tutorials/dockervolumes/) that has a volume that points to `/var/lib/ghost/content` (or /var/lib/ghost for 0.11.x) and then reference it:
|
||||||
|
|
@ -118,6 +107,10 @@ Alternatively you can use a [data container](http://docs.docker.com/engine/tutor
|
||||||
$ docker run -d --name some-ghost --volumes-from some-ghost-data ghost
|
$ docker run -d --name some-ghost --volumes-from some-ghost-data ghost
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### SQLite Database
|
||||||
|
|
||||||
|
This Docker image for Ghost uses SQLite. There is nothing special to configure.
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
All Ghost configuration parameters (such as `url`) can be specified via environment variables. See [the Ghost documentation](https://docs.ghost.org/docs/config#section-running-ghost-with-config-env-variables) for details about what configuration is allowed and how to convert a nested configuration key into the appropriate environment variable name:
|
All Ghost configuration parameters (such as `url`) can be specified via environment variables. See [the Ghost documentation](https://docs.ghost.org/docs/config#section-running-ghost-with-config-env-variables) for details about what configuration is allowed and how to convert a nested configuration key into the appropriate environment variable name:
|
||||||
|
|
|
||||||
|
|
@ -16,38 +16,38 @@ WARNING:
|
||||||
|
|
||||||
# Supported tags and respective `Dockerfile` links
|
# Supported tags and respective `Dockerfile` links
|
||||||
|
|
||||||
- [`3.4.7-stretch`, `3.4-stretch`, `3.4.7`, `3.4`, `latest` (*3.4/stretch/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/87941e0d428dfe0b54be5b2ad80ab6699c95058a/3.4/stretch/Dockerfile)
|
- [`3.4.7-stretch`, `3.4-stretch`, `3.4.7`, `3.4`, `latest` (*3.4/stretch/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/e60ab8c2df98de16d9abfaf90b9227059433fd2e/3.4/stretch/Dockerfile)
|
||||||
- [`3.4.7-jessie`, `3.4-jessie` (*3.4/jessie/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/87941e0d428dfe0b54be5b2ad80ab6699c95058a/3.4/jessie/Dockerfile)
|
- [`3.4.7-jessie`, `3.4-jessie` (*3.4/jessie/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/93a25ea07ddfedad53fc77d522b9b8e703518030/3.4/jessie/Dockerfile)
|
||||||
- [`3.4.7-onbuild`, `3.4-onbuild` (*3.4/onbuild/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/87941e0d428dfe0b54be5b2ad80ab6699c95058a/3.4/onbuild/Dockerfile)
|
- [`3.4.7-onbuild`, `3.4-onbuild` (*3.4/onbuild/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/87941e0d428dfe0b54be5b2ad80ab6699c95058a/3.4/onbuild/Dockerfile)
|
||||||
- [`3.4.7-windowsservercore`, `3.4-windowsservercore` (*3.4/windowsservercore/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/b4440856db08d09ee96b6ab5a763cd5556f504e2/3.4/windowsservercore/Dockerfile)
|
- [`3.4.7-windowsservercore`, `3.4-windowsservercore` (*3.4/windowsservercore/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/b4440856db08d09ee96b6ab5a763cd5556f504e2/3.4/windowsservercore/Dockerfile)
|
||||||
- [`3.4.7-alpine3.8`, `3.4-alpine3.8`, `3.4.7-alpine`, `3.4-alpine` (*3.4/alpine3.8/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/fb51ba61bf670297a1d443cb0a4906447969edad/3.4/alpine3.8/Dockerfile)
|
- [`3.4.7-alpine3.8`, `3.4-alpine3.8`, `3.4.7-alpine`, `3.4-alpine` (*3.4/alpine3.8/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/63ce668557c6f5afe60bac087ec24f19390f2707/3.4/alpine3.8/Dockerfile)
|
||||||
- [`3.4.7-alpine3.7`, `3.4-alpine3.7` (*3.4/alpine3.7/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/80fa879a04aef26ca1a6ced627a87d86fa5763df/3.4/alpine3.7/Dockerfile)
|
- [`3.4.7-alpine3.7`, `3.4-alpine3.7` (*3.4/alpine3.7/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/63ce668557c6f5afe60bac087ec24f19390f2707/3.4/alpine3.7/Dockerfile)
|
||||||
- [`3.4.7-alpine3.6`, `3.4-alpine3.6` (*3.4/alpine3.6/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/80fa879a04aef26ca1a6ced627a87d86fa5763df/3.4/alpine3.6/Dockerfile)
|
- [`3.4.7-alpine3.6`, `3.4-alpine3.6` (*3.4/alpine3.6/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/63ce668557c6f5afe60bac087ec24f19390f2707/3.4/alpine3.6/Dockerfile)
|
||||||
- [`3.3.0-rc.1-stretch`, `3.3.0-stretch`, `3.3-stretch`, `3.3.0-rc.1`, `3.3.0`, `3.3` (*3.3/stretch/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/b53c8f548757e9c9ef2fa6895762ddc538d94a7e/3.3/stretch/Dockerfile)
|
- [`3.3.0-rc.1-stretch`, `3.3.0-stretch`, `3.3-stretch`, `3.3.0-rc.1`, `3.3.0`, `3.3` (*3.3/stretch/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/e60ab8c2df98de16d9abfaf90b9227059433fd2e/3.3/stretch/Dockerfile)
|
||||||
- [`3.3.0-rc.1-jessie`, `3.3.0-jessie`, `3.3-jessie` (*3.3/jessie/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/b53c8f548757e9c9ef2fa6895762ddc538d94a7e/3.3/jessie/Dockerfile)
|
- [`3.3.0-rc.1-jessie`, `3.3.0-jessie`, `3.3-jessie` (*3.3/jessie/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/93a25ea07ddfedad53fc77d522b9b8e703518030/3.3/jessie/Dockerfile)
|
||||||
- [`3.3.0-rc.1-onbuild`, `3.3.0-onbuild`, `3.3-onbuild` (*3.3/onbuild/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/e0f9cb5a3cc190acd42565113e3380b5853f5746/3.3/onbuild/Dockerfile)
|
- [`3.3.0-rc.1-onbuild`, `3.3.0-onbuild`, `3.3-onbuild` (*3.3/onbuild/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/e0f9cb5a3cc190acd42565113e3380b5853f5746/3.3/onbuild/Dockerfile)
|
||||||
- [`3.3.0-rc.1-windowsservercore`, `3.3.0-windowsservercore`, `3.3-windowsservercore` (*3.3/windowsservercore/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/b4440856db08d09ee96b6ab5a763cd5556f504e2/3.3/windowsservercore/Dockerfile)
|
- [`3.3.0-rc.1-windowsservercore`, `3.3.0-windowsservercore`, `3.3-windowsservercore` (*3.3/windowsservercore/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/b4440856db08d09ee96b6ab5a763cd5556f504e2/3.3/windowsservercore/Dockerfile)
|
||||||
- [`3.3.0-rc.1-alpine3.8`, `3.3.0-rc.1-alpine`, `3.3.0-alpine3.8`, `3.3-alpine3.8`, `3.3.0-alpine`, `3.3-alpine` (*3.3/alpine3.8/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/fb51ba61bf670297a1d443cb0a4906447969edad/3.3/alpine3.8/Dockerfile)
|
- [`3.3.0-rc.1-alpine3.8`, `3.3.0-rc.1-alpine`, `3.3.0-alpine3.8`, `3.3-alpine3.8`, `3.3.0-alpine`, `3.3-alpine` (*3.3/alpine3.8/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/63ce668557c6f5afe60bac087ec24f19390f2707/3.3/alpine3.8/Dockerfile)
|
||||||
- [`3.3.0-rc.1-alpine3.7`, `3.3.0-alpine3.7`, `3.3-alpine3.7` (*3.3/alpine3.7/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/80fa879a04aef26ca1a6ced627a87d86fa5763df/3.3/alpine3.7/Dockerfile)
|
- [`3.3.0-rc.1-alpine3.7`, `3.3.0-alpine3.7`, `3.3-alpine3.7` (*3.3/alpine3.7/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/63ce668557c6f5afe60bac087ec24f19390f2707/3.3/alpine3.7/Dockerfile)
|
||||||
- [`3.3.0-rc.1-alpine3.6`, `3.3.0-alpine3.6`, `3.3-alpine3.6` (*3.3/alpine3.6/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/80fa879a04aef26ca1a6ced627a87d86fa5763df/3.3/alpine3.6/Dockerfile)
|
- [`3.3.0-rc.1-alpine3.6`, `3.3.0-alpine3.6`, `3.3-alpine3.6` (*3.3/alpine3.6/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/63ce668557c6f5afe60bac087ec24f19390f2707/3.3/alpine3.6/Dockerfile)
|
||||||
- [`3.2.1-stretch`, `3.2-stretch`, `3.2.1`, `3.2` (*3.2/stretch/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/b53c8f548757e9c9ef2fa6895762ddc538d94a7e/3.2/stretch/Dockerfile)
|
- [`3.2.1-stretch`, `3.2-stretch`, `3.2.1`, `3.2` (*3.2/stretch/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/e60ab8c2df98de16d9abfaf90b9227059433fd2e/3.2/stretch/Dockerfile)
|
||||||
- [`3.2.1-jessie`, `3.2-jessie` (*3.2/jessie/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/b53c8f548757e9c9ef2fa6895762ddc538d94a7e/3.2/jessie/Dockerfile)
|
- [`3.2.1-jessie`, `3.2-jessie` (*3.2/jessie/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/93a25ea07ddfedad53fc77d522b9b8e703518030/3.2/jessie/Dockerfile)
|
||||||
- [`3.2.1-onbuild`, `3.2-onbuild` (*3.2/onbuild/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/e0f9cb5a3cc190acd42565113e3380b5853f5746/3.2/onbuild/Dockerfile)
|
- [`3.2.1-onbuild`, `3.2-onbuild` (*3.2/onbuild/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/e0f9cb5a3cc190acd42565113e3380b5853f5746/3.2/onbuild/Dockerfile)
|
||||||
- [`3.2.1-windowsservercore`, `3.2-windowsservercore` (*3.2/windowsservercore/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/b4440856db08d09ee96b6ab5a763cd5556f504e2/3.2/windowsservercore/Dockerfile)
|
- [`3.2.1-windowsservercore`, `3.2-windowsservercore` (*3.2/windowsservercore/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/b4440856db08d09ee96b6ab5a763cd5556f504e2/3.2/windowsservercore/Dockerfile)
|
||||||
- [`3.2.1-alpine3.8`, `3.2-alpine3.8`, `3.2.1-alpine`, `3.2-alpine` (*3.2/alpine3.8/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/fb51ba61bf670297a1d443cb0a4906447969edad/3.2/alpine3.8/Dockerfile)
|
- [`3.2.1-alpine3.8`, `3.2-alpine3.8`, `3.2.1-alpine`, `3.2-alpine` (*3.2/alpine3.8/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/63ce668557c6f5afe60bac087ec24f19390f2707/3.2/alpine3.8/Dockerfile)
|
||||||
- [`3.2.1-alpine3.7`, `3.2-alpine3.7` (*3.2/alpine3.7/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/80fa879a04aef26ca1a6ced627a87d86fa5763df/3.2/alpine3.7/Dockerfile)
|
- [`3.2.1-alpine3.7`, `3.2-alpine3.7` (*3.2/alpine3.7/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/63ce668557c6f5afe60bac087ec24f19390f2707/3.2/alpine3.7/Dockerfile)
|
||||||
- [`3.2.1-alpine3.6`, `3.2-alpine3.6` (*3.2/alpine3.6/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/80fa879a04aef26ca1a6ced627a87d86fa5763df/3.2/alpine3.6/Dockerfile)
|
- [`3.2.1-alpine3.6`, `3.2-alpine3.6` (*3.2/alpine3.6/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/63ce668557c6f5afe60bac087ec24f19390f2707/3.2/alpine3.6/Dockerfile)
|
||||||
- [`3.1.3-stretch`, `3.1-stretch`, `3.1.3`, `3.1` (*3.1/stretch/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/b53c8f548757e9c9ef2fa6895762ddc538d94a7e/3.1/stretch/Dockerfile)
|
- [`3.1.3-stretch`, `3.1-stretch`, `3.1.3`, `3.1` (*3.1/stretch/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/e60ab8c2df98de16d9abfaf90b9227059433fd2e/3.1/stretch/Dockerfile)
|
||||||
- [`3.1.3-jessie`, `3.1-jessie` (*3.1/jessie/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/b53c8f548757e9c9ef2fa6895762ddc538d94a7e/3.1/jessie/Dockerfile)
|
- [`3.1.3-jessie`, `3.1-jessie` (*3.1/jessie/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/93a25ea07ddfedad53fc77d522b9b8e703518030/3.1/jessie/Dockerfile)
|
||||||
- [`3.1.3-onbuild`, `3.1-onbuild` (*3.1/onbuild/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/e0f9cb5a3cc190acd42565113e3380b5853f5746/3.1/onbuild/Dockerfile)
|
- [`3.1.3-onbuild`, `3.1-onbuild` (*3.1/onbuild/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/e0f9cb5a3cc190acd42565113e3380b5853f5746/3.1/onbuild/Dockerfile)
|
||||||
- [`3.1.3-windowsservercore`, `3.1-windowsservercore` (*3.1/windowsservercore/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/b4440856db08d09ee96b6ab5a763cd5556f504e2/3.1/windowsservercore/Dockerfile)
|
- [`3.1.3-windowsservercore`, `3.1-windowsservercore` (*3.1/windowsservercore/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/b4440856db08d09ee96b6ab5a763cd5556f504e2/3.1/windowsservercore/Dockerfile)
|
||||||
- [`4.0.0-preview.5-stretch`, `4.0.0-preview.5`, `4.0.0-stretch`, `4.0-stretch`, `4.0.0`, `4.0` (*4.0/stretch/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/bd2e624cf881e72c42434922808199f70054a19e/4.0/stretch/Dockerfile)
|
- [`4.0.0-preview.5-stretch`, `4.0.0-preview.5`, `4.0.0-stretch`, `4.0-stretch`, `4.0.0`, `4.0` (*4.0/stretch/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/e60ab8c2df98de16d9abfaf90b9227059433fd2e/4.0/stretch/Dockerfile)
|
||||||
- [`4.0.0-preview.5-jessie`, `4.0.0-jessie`, `4.0-jessie` (*4.0/jessie/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/bd2e624cf881e72c42434922808199f70054a19e/4.0/jessie/Dockerfile)
|
- [`4.0.0-preview.5-jessie`, `4.0.0-jessie`, `4.0-jessie` (*4.0/jessie/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/93a25ea07ddfedad53fc77d522b9b8e703518030/4.0/jessie/Dockerfile)
|
||||||
- [`4.0.0-preview.5-onbuild`, `4.0.0-onbuild`, `4.0-onbuild` (*4.0/onbuild/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/bd2e624cf881e72c42434922808199f70054a19e/4.0/onbuild/Dockerfile)
|
- [`4.0.0-preview.5-onbuild`, `4.0.0-onbuild`, `4.0-onbuild` (*4.0/onbuild/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/bd2e624cf881e72c42434922808199f70054a19e/4.0/onbuild/Dockerfile)
|
||||||
- [`4.0.0-preview.5-windowsservercore`, `4.0.0-windowsservercore`, `4.0-windowsservercore` (*4.0/windowsservercore/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/6c4c95fd1837f582c11bbddb57c2c7e2fc596549/4.0/windowsservercore/Dockerfile)
|
- [`4.0.0-preview.5-windowsservercore`, `4.0.0-windowsservercore`, `4.0-windowsservercore` (*4.0/windowsservercore/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/6c4c95fd1837f582c11bbddb57c2c7e2fc596549/4.0/windowsservercore/Dockerfile)
|
||||||
- [`4.0.0-preview.5-alpine3.8`, `4.0.0-preview.5-alpine`, `4.0.0-alpine3.8`, `4.0-alpine3.8`, `4.0.0-alpine`, `4.0-alpine` (*4.0/alpine3.8/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/bd2e624cf881e72c42434922808199f70054a19e/4.0/alpine3.8/Dockerfile)
|
- [`4.0.0-preview.5-alpine3.8`, `4.0.0-preview.5-alpine`, `4.0.0-alpine3.8`, `4.0-alpine3.8`, `4.0.0-alpine`, `4.0-alpine` (*4.0/alpine3.8/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/63ce668557c6f5afe60bac087ec24f19390f2707/4.0/alpine3.8/Dockerfile)
|
||||||
- [`4.0.0-preview.5-alpine3.7`, `4.0.0-alpine3.7`, `4.0-alpine3.7` (*4.0/alpine3.7/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/bd2e624cf881e72c42434922808199f70054a19e/4.0/alpine3.7/Dockerfile)
|
- [`4.0.0-preview.5-alpine3.7`, `4.0.0-alpine3.7`, `4.0-alpine3.7` (*4.0/alpine3.7/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/63ce668557c6f5afe60bac087ec24f19390f2707/4.0/alpine3.7/Dockerfile)
|
||||||
- [`4.0.0-preview.5-alpine3.6`, `4.0.0-alpine3.6`, `4.0-alpine3.6` (*4.0/alpine3.6/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/bd2e624cf881e72c42434922808199f70054a19e/4.0/alpine3.6/Dockerfile)
|
- [`4.0.0-preview.5-alpine3.6`, `4.0.0-alpine3.6`, `4.0-alpine3.6` (*4.0/alpine3.6/Dockerfile*)](https://github.com/HaxeFoundation/docker-library-haxe/blob/63ce668557c6f5afe60bac087ec24f19390f2707/4.0/alpine3.6/Dockerfile)
|
||||||
|
|
||||||
# Quick reference
|
# Quick reference
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue