Run update.sh

This commit is contained in:
Docker Library Bot 2018-11-19 16:09:37 +00:00
parent c366ce44b7
commit 1318b21fa2
42 changed files with 76 additions and 51 deletions

View File

@ -53,7 +53,7 @@ WARNING:
[https://github.com/docker-library/buildpack-deps/issues](https://github.com/docker-library/buildpack-deps/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/buildpack-deps)
[the Docker Community](https://github.com/docker-library/buildpack-deps)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/buildpack-deps/), [`arm32v5`](https://hub.docker.com/r/arm32v5/buildpack-deps/), [`arm32v7`](https://hub.docker.com/r/arm32v7/buildpack-deps/), [`arm64v8`](https://hub.docker.com/r/arm64v8/buildpack-deps/), [`i386`](https://hub.docker.com/r/i386/buildpack-deps/), [`ppc64le`](https://hub.docker.com/r/ppc64le/buildpack-deps/), [`s390x`](https://hub.docker.com/r/s390x/buildpack-deps/)

View File

@ -30,7 +30,7 @@ WARNING:
[https://github.com/docker-library/busybox/issues](https://github.com/docker-library/busybox/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/busybox)
[the Docker Community](https://github.com/docker-library/busybox)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/busybox/), [`arm32v5`](https://hub.docker.com/r/arm32v5/busybox/), [`arm32v6`](https://hub.docker.com/r/arm32v6/busybox/), [`arm32v7`](https://hub.docker.com/r/arm32v7/busybox/), [`arm64v8`](https://hub.docker.com/r/arm64v8/busybox/), [`i386`](https://hub.docker.com/r/i386/busybox/), [`ppc64le`](https://hub.docker.com/r/ppc64le/busybox/), [`s390x`](https://hub.docker.com/r/s390x/busybox/)

View File

@ -30,7 +30,7 @@ WARNING:
[https://github.com/docker-library/cassandra/issues](https://github.com/docker-library/cassandra/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/cassandra)
[the Docker Community](https://github.com/docker-library/cassandra)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/cassandra/), [`arm64v8`](https://hub.docker.com/r/arm64v8/cassandra/), [`i386`](https://hub.docker.com/r/i386/cassandra/), [`ppc64le`](https://hub.docker.com/r/ppc64le/cassandra/)

View File

@ -27,7 +27,7 @@ WARNING:
[https://github.com/tianon/docker-brew-cirros/issues](https://github.com/tianon/docker-brew-cirros/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/tianon/docker-brew-cirros)
[the Docker Community](https://github.com/tianon/docker-brew-cirros)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/cirros/), [`arm32v5`](https://hub.docker.com/r/arm32v5/cirros/), [`arm64v8`](https://hub.docker.com/r/arm64v8/cirros/), [`i386`](https://hub.docker.com/r/i386/cirros/), [`ppc64le`](https://hub.docker.com/r/ppc64le/cirros/)

View File

@ -34,7 +34,7 @@ WARNING:
[https://github.com/Quantisan/docker-clojure/issues](https://github.com/Quantisan/docker-clojure/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/Quantisan/docker-clojure)
[the Docker Community](https://github.com/Quantisan/docker-clojure)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/clojure/), [`arm32v5`](https://hub.docker.com/r/arm32v5/clojure/), [`arm32v7`](https://hub.docker.com/r/arm32v7/clojure/), [`arm64v8`](https://hub.docker.com/r/arm64v8/clojure/), [`i386`](https://hub.docker.com/r/i386/clojure/), [`ppc64le`](https://hub.docker.com/r/ppc64le/clojure/), [`s390x`](https://hub.docker.com/r/s390x/clojure/)
@ -63,9 +63,28 @@ Clojure is a dialect of the Lisp programming language. It is a general-purpose p
# How to use this image
## Start a Lein/Clojure instance in your app
## Build tools
Since the most common way to use Clojure is in conjunction with [Leiningen (`lein`)](http://leiningen.org/), this image assumes that's how you'll be working. The most straightforward way to use this image is to add a `Dockerfile` to an existing Leiningen/Clojure project:
Clojure has three major approaches to building and running projects:
1. [leiningen](https://leiningen.org)
1. The oldest and probably most common tool
2. [boot](http://boot-clj.com)
1. An alternative approach that solves similar problems as leiningen
3. [tools-deps](https://clojure.org/guides/deps_and_cli)
1. A more recent official tool for some of the lein/boot use cases
There are variants of this image for all three of these tools and their respective releases. The most basic form of these tags is:
1. `clojure:lein`
2. `clojure:boot`
3. `clojure:tools-deps`
But you can also append a hyphen and the version of that tool you'd like to use. For example, for lein 2.8.1 you can use this image: `clojure:lein-2.8.1`.
## Run your app with leiningen
Add a `Dockerfile` to an existing Leiningen/Clojure project with the following contents:
```dockerfile
FROM clojure
@ -108,6 +127,10 @@ $ docker run -it --rm -v "$PWD":/usr/src/app -w /usr/src/app clojure lein uberja
This will build your project into a jar file located in your project's `target/uberjar` directory.
## More details
See [the official image README](https://github.com/Quantisan/docker-clojure/blob/master/README.md) for more details about using this image with boot and tools-deps.
# Image Variants
The `clojure` images come in many flavors, each designed for a specific use case.

View File

@ -16,8 +16,8 @@ WARNING:
# Supported tags and respective `Dockerfile` links
- [`1.7.3`, `1.7`, `1`, `latest` (*1.7/Dockerfile*)](https://github.com/composer/docker/blob/f1ef9c7364cf081900d81fc00a3c77c8fe88510a/1.7/Dockerfile)
- [`1.6.5`, `1.6` (*1.6/Dockerfile*)](https://github.com/composer/docker/blob/f8cfd38af0ce22cf4b4b28315330cfa7e8568725/1.6/Dockerfile)
- [`1.7.3`, `1.7`, `1`, `latest` (*1.7/Dockerfile*)](https://github.com/composer/docker/blob/5f82e6f3af987a33ed53fd90f93452d64f9e16b1/1.7/Dockerfile)
- [`1.6.5`, `1.6` (*1.6/Dockerfile*)](https://github.com/composer/docker/blob/5f82e6f3af987a33ed53fd90f93452d64f9e16b1/1.6/Dockerfile)
# Quick reference

View File

@ -36,7 +36,7 @@ WARNING:
[https://github.com/c0b/docker-erlang-otp/issues](https://github.com/c0b/docker-erlang-otp/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/c0b/docker-erlang-otp)
[the Docker Community](https://github.com/c0b/docker-erlang-otp)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/erlang/), [`arm32v7`](https://hub.docker.com/r/arm32v7/erlang/), [`arm64v8`](https://hub.docker.com/r/arm64v8/erlang/), [`i386`](https://hub.docker.com/r/i386/erlang/), [`ppc64le`](https://hub.docker.com/r/ppc64le/erlang/), [`s390x`](https://hub.docker.com/r/s390x/erlang/)

View File

@ -30,7 +30,7 @@ WARNING:
[https://github.com/docker-library/gcc/issues](https://github.com/docker-library/gcc/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/gcc)
[the Docker Community](https://github.com/docker-library/gcc)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/gcc/), [`arm32v5`](https://hub.docker.com/r/arm32v5/gcc/), [`arm32v7`](https://hub.docker.com/r/arm32v7/gcc/), [`arm64v8`](https://hub.docker.com/r/arm64v8/gcc/), [`ppc64le`](https://hub.docker.com/r/ppc64le/gcc/), [`s390x`](https://hub.docker.com/r/s390x/gcc/)

View File

@ -16,8 +16,8 @@ WARNING:
# Supported tags and respective `Dockerfile` links
- [`3.4.3`, `3.4`, `latest` (*3.4.3/Dockerfile*)](https://github.com/geonetwork/docker-geonetwork/blob/21efb004beb5ee0675dd9ee0c807ca756b49b9a3/3.4.3/Dockerfile)
- [`3.4.3-postgres`, `3.4-postgres`, `postgres` (*3.4.3/postgres/Dockerfile*)](https://github.com/geonetwork/docker-geonetwork/blob/21efb004beb5ee0675dd9ee0c807ca756b49b9a3/3.4.3/postgres/Dockerfile)
- [`3.4.4`, `3.4`, `latest` (*3.4.4/Dockerfile*)](https://github.com/geonetwork/docker-geonetwork/blob/2d357e39f107bf2527b9b4b396084a759c245b72/3.4.4/Dockerfile)
- [`3.4.4-postgres`, `3.4-postgres`, `postgres` (*3.4.4/postgres/Dockerfile*)](https://github.com/geonetwork/docker-geonetwork/blob/4e77623ad6a2cfb94c3c57e3558815e44936adae/3.4.4/postgres/Dockerfile)
# Quick reference

View File

@ -32,7 +32,7 @@ WARNING:
[https://github.com/docker-library/ghost/issues](https://github.com/docker-library/ghost/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/ghost)
[the Docker Community](https://github.com/docker-library/ghost)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/ghost/), [`arm32v6`](https://hub.docker.com/r/arm32v6/ghost/), [`arm32v7`](https://hub.docker.com/r/arm32v7/ghost/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ghost/), [`i386`](https://hub.docker.com/r/i386/ghost/), [`ppc64le`](https://hub.docker.com/r/ppc64le/ghost/), [`s390x`](https://hub.docker.com/r/s390x/ghost/)

View File

@ -67,7 +67,7 @@ WARNING:
[https://github.com/docker-library/golang/issues](https://github.com/docker-library/golang/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/golang)
[the Docker Community](https://github.com/docker-library/golang)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/golang/), [`arm32v6`](https://hub.docker.com/r/arm32v6/golang/), [`arm32v7`](https://hub.docker.com/r/arm32v7/golang/), [`arm64v8`](https://hub.docker.com/r/arm64v8/golang/), [`i386`](https://hub.docker.com/r/i386/golang/), [`ppc64le`](https://hub.docker.com/r/ppc64le/golang/), [`s390x`](https://hub.docker.com/r/s390x/golang/), [`windows-amd64`](https://hub.docker.com/r/winamd64/golang/)

View File

@ -34,7 +34,7 @@ WARNING:
[https://github.com/docker-library/haproxy/issues](https://github.com/docker-library/haproxy/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/haproxy)
[the Docker Community](https://github.com/docker-library/haproxy)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/haproxy/), [`arm32v5`](https://hub.docker.com/r/arm32v5/haproxy/), [`arm32v6`](https://hub.docker.com/r/arm32v6/haproxy/), [`arm32v7`](https://hub.docker.com/r/arm32v7/haproxy/), [`arm64v8`](https://hub.docker.com/r/arm64v8/haproxy/), [`i386`](https://hub.docker.com/r/i386/haproxy/), [`ppc64le`](https://hub.docker.com/r/ppc64le/haproxy/), [`s390x`](https://hub.docker.com/r/s390x/haproxy/)

View File

@ -28,7 +28,7 @@ WARNING:
[https://github.com/freebroccolo/docker-haskell/issues](https://github.com/freebroccolo/docker-haskell/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/freebroccolo/docker-haskell)
[the Docker Community](https://github.com/freebroccolo/docker-haskell)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/haskell/)

View File

@ -44,7 +44,7 @@ WARNING:
[https://github.com/docker-library/hello-world/issues](https://github.com/docker-library/hello-world/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/hello-world)
[the Docker Community](https://github.com/docker-library/hello-world)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/hello-seattle/), [`arm32v5`](https://hub.docker.com/r/arm32v5/hello-seattle/), [`arm32v7`](https://hub.docker.com/r/arm32v7/hello-seattle/), [`arm64v8`](https://hub.docker.com/r/arm64v8/hello-seattle/), [`i386`](https://hub.docker.com/r/i386/hello-seattle/), [`ppc64le`](https://hub.docker.com/r/ppc64le/hello-seattle/), [`s390x`](https://hub.docker.com/r/s390x/hello-seattle/), [`windows-amd64`](https://hub.docker.com/r/winamd64/hello-seattle/)

View File

@ -44,7 +44,7 @@ WARNING:
[https://github.com/docker-library/hello-world/issues](https://github.com/docker-library/hello-world/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/hello-world)
[the Docker Community](https://github.com/docker-library/hello-world)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/hello-world/), [`arm32v5`](https://hub.docker.com/r/arm32v5/hello-world/), [`arm32v7`](https://hub.docker.com/r/arm32v7/hello-world/), [`arm64v8`](https://hub.docker.com/r/arm64v8/hello-world/), [`i386`](https://hub.docker.com/r/i386/hello-world/), [`ppc64le`](https://hub.docker.com/r/ppc64le/hello-world/), [`s390x`](https://hub.docker.com/r/s390x/hello-world/), [`windows-amd64`](https://hub.docker.com/r/winamd64/hello-world/)

View File

@ -44,7 +44,7 @@ WARNING:
[https://github.com/docker-library/hello-world/issues](https://github.com/docker-library/hello-world/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/hello-world)
[the Docker Community](https://github.com/docker-library/hello-world)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/hola-mundo/), [`arm32v5`](https://hub.docker.com/r/arm32v5/hola-mundo/), [`arm32v7`](https://hub.docker.com/r/arm32v7/hola-mundo/), [`arm64v8`](https://hub.docker.com/r/arm64v8/hola-mundo/), [`i386`](https://hub.docker.com/r/i386/hola-mundo/), [`ppc64le`](https://hub.docker.com/r/ppc64le/hola-mundo/), [`s390x`](https://hub.docker.com/r/s390x/hola-mundo/), [`windows-amd64`](https://hub.docker.com/r/winamd64/hola-mundo/)

View File

@ -28,7 +28,7 @@ WARNING:
[https://github.com/docker-library/httpd/issues](https://github.com/docker-library/httpd/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/httpd)
[the Docker Community](https://github.com/docker-library/httpd)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/httpd/), [`arm32v5`](https://hub.docker.com/r/arm32v5/httpd/), [`arm32v6`](https://hub.docker.com/r/arm32v6/httpd/), [`arm32v7`](https://hub.docker.com/r/arm32v7/httpd/), [`arm64v8`](https://hub.docker.com/r/arm64v8/httpd/), [`i386`](https://hub.docker.com/r/i386/httpd/), [`ppc64le`](https://hub.docker.com/r/ppc64le/httpd/), [`s390x`](https://hub.docker.com/r/s390x/httpd/)

View File

@ -32,7 +32,7 @@ WARNING:
[https://github.com/appropriate/docker-jetty/issues](https://github.com/appropriate/docker-jetty/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/appropriate/docker-jetty)
[the Docker Community](https://github.com/appropriate/docker-jetty)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/jetty/), [`arm32v5`](https://hub.docker.com/r/arm32v5/jetty/), [`arm32v6`](https://hub.docker.com/r/arm32v6/jetty/), [`arm32v7`](https://hub.docker.com/r/arm32v7/jetty/), [`arm64v8`](https://hub.docker.com/r/arm64v8/jetty/), [`i386`](https://hub.docker.com/r/i386/jetty/), [`ppc64le`](https://hub.docker.com/r/ppc64le/jetty/), [`s390x`](https://hub.docker.com/r/s390x/jetty/)

View File

@ -35,7 +35,7 @@ WARNING:
[https://github.com/cpuguy83/docker-jruby/issues](https://github.com/cpuguy83/docker-jruby/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/cpuguy83/docker-jruby)
[the Docker Community](https://github.com/cpuguy83/docker-jruby)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/jruby/), [`arm32v5`](https://hub.docker.com/r/arm32v5/jruby/), [`arm64v8`](https://hub.docker.com/r/arm64v8/jruby/), [`i386`](https://hub.docker.com/r/i386/jruby/), [`ppc64le`](https://hub.docker.com/r/ppc64le/jruby/), [`s390x`](https://hub.docker.com/r/s390x/jruby/)

View File

@ -48,7 +48,7 @@ WARNING:
[https://github.com/docker-library/julia/issues](https://github.com/docker-library/julia/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/julia)
[the Docker Community](https://github.com/docker-library/julia)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/julia/), [`i386`](https://hub.docker.com/r/i386/julia/), [`windows-amd64`](https://hub.docker.com/r/winamd64/julia/)

View File

@ -32,7 +32,7 @@ WARNING:
[https://github.com/docker-library/mariadb/issues](https://github.com/docker-library/mariadb/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/mariadb)
[the Docker Community](https://github.com/docker-library/mariadb)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/mariadb/), [`arm64v8`](https://hub.docker.com/r/arm64v8/mariadb/), [`i386`](https://hub.docker.com/r/i386/mariadb/), [`ppc64le`](https://hub.docker.com/r/ppc64le/mariadb/)

View File

@ -28,7 +28,7 @@ WARNING:
[https://github.com/docker-library/memcached/issues](https://github.com/docker-library/memcached/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/memcached)
[the Docker Community](https://github.com/docker-library/memcached)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/memcached/), [`arm32v5`](https://hub.docker.com/r/arm32v5/memcached/), [`arm32v6`](https://hub.docker.com/r/arm32v6/memcached/), [`arm32v7`](https://hub.docker.com/r/arm32v7/memcached/), [`arm64v8`](https://hub.docker.com/r/arm64v8/memcached/), [`i386`](https://hub.docker.com/r/i386/memcached/), [`ppc64le`](https://hub.docker.com/r/ppc64le/memcached/), [`s390x`](https://hub.docker.com/r/s390x/memcached/)

View File

@ -87,7 +87,7 @@ WARNING:
[https://github.com/docker-library/mongo/issues](https://github.com/docker-library/mongo/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/mongo)
[the Docker Community](https://github.com/docker-library/mongo)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/mongo/), [`arm64v8`](https://hub.docker.com/r/arm64v8/mongo/), [`windows-amd64`](https://hub.docker.com/r/winamd64/mongo/)

View File

@ -16,8 +16,10 @@ WARNING:
# Supported tags and respective `Dockerfile` links
- [`3.4.9`, `3.4`, `latest` (*3.4.9/community/Dockerfile*)](https://github.com/neo4j/docker-neo4j-publish/blob/94477399f63ab99c035e50b46f642e791413dcaa/3.4.9/community/Dockerfile)
- [`3.4.9-enterprise`, `3.4-enterprise`, `enterprise` (*3.4.9/enterprise/Dockerfile*)](https://github.com/neo4j/docker-neo4j-publish/blob/94477399f63ab99c035e50b46f642e791413dcaa/3.4.9/enterprise/Dockerfile)
- [`3.4.10`, `3.4`, `latest` (*3.4.10/community/Dockerfile*)](https://github.com/neo4j/docker-neo4j-publish/blob/fd6e47784c8a05d7c4b9a5d324eb8a19e896e0a8/3.4.10/community/Dockerfile)
- [`3.4.10-enterprise`, `3.4-enterprise`, `enterprise` (*3.4.10/enterprise/Dockerfile*)](https://github.com/neo4j/docker-neo4j-publish/blob/fd6e47784c8a05d7c4b9a5d324eb8a19e896e0a8/3.4.10/enterprise/Dockerfile)
- [`3.4.9` (*3.4.9/community/Dockerfile*)](https://github.com/neo4j/docker-neo4j-publish/blob/94477399f63ab99c035e50b46f642e791413dcaa/3.4.9/community/Dockerfile)
- [`3.4.9-enterprise` (*3.4.9/enterprise/Dockerfile*)](https://github.com/neo4j/docker-neo4j-publish/blob/94477399f63ab99c035e50b46f642e791413dcaa/3.4.9/enterprise/Dockerfile)
- [`3.4.8` (*3.4.8/community/Dockerfile*)](https://github.com/neo4j/docker-neo4j-publish/blob/bac5a9e57cac086d60d38e47b8bccd802934f184/3.4.8/community/Dockerfile)
- [`3.4.8-enterprise` (*3.4.8/enterprise/Dockerfile*)](https://github.com/neo4j/docker-neo4j-publish/blob/bac5a9e57cac086d60d38e47b8bccd802934f184/3.4.8/enterprise/Dockerfile)
- [`3.4.7` (*3.4.7/community/Dockerfile*)](https://github.com/neo4j/docker-neo4j-publish/blob/fe5f5d85197f237a0f9d3e068b83f43e1b2639b9/3.4.7/community/Dockerfile)

View File

@ -26,9 +26,9 @@ WARNING:
- [`6.14.4-onbuild`, `6.14-onbuild`, `6-onbuild`, `boron-onbuild` (*6/onbuild/Dockerfile*)](https://github.com/nodejs/docker-node/blob/72dd945d29dee5afa73956ebc971bf3a472442f7/6/onbuild/Dockerfile)
- [`6.14.4-slim`, `6.14-slim`, `6-slim`, `boron-slim` (*6/slim/Dockerfile*)](https://github.com/nodejs/docker-node/blob/72dd945d29dee5afa73956ebc971bf3a472442f7/6/slim/Dockerfile)
- [`6.14.4-stretch`, `6.14-stretch`, `6-stretch`, `boron-stretch` (*6/stretch/Dockerfile*)](https://github.com/nodejs/docker-node/blob/72dd945d29dee5afa73956ebc971bf3a472442f7/6/stretch/Dockerfile)
- [`11.1.0-alpine`, `11.1-alpine`, `11-alpine`, `alpine` (*11/alpine/Dockerfile*)](https://github.com/nodejs/docker-node/blob/120b465c249cf08d7939a3a0c07fec897cfcf91d/11/alpine/Dockerfile)
- [`11.1.0-slim`, `11.1-slim`, `11-slim`, `slim` (*11/slim/Dockerfile*)](https://github.com/nodejs/docker-node/blob/120b465c249cf08d7939a3a0c07fec897cfcf91d/11/slim/Dockerfile)
- [`11.1.0-stretch`, `11.1-stretch`, `11-stretch`, `stretch`, `11.1.0`, `11.1`, `11`, `latest` (*11/stretch/Dockerfile*)](https://github.com/nodejs/docker-node/blob/120b465c249cf08d7939a3a0c07fec897cfcf91d/11/stretch/Dockerfile)
- [`11.2.0-alpine`, `11.2-alpine`, `11-alpine`, `alpine` (*11/alpine/Dockerfile*)](https://github.com/nodejs/docker-node/blob/241b2cfaca1ba225f312d439365d4410c94737fb/11/alpine/Dockerfile)
- [`11.2.0-slim`, `11.2-slim`, `11-slim`, `slim` (*11/slim/Dockerfile*)](https://github.com/nodejs/docker-node/blob/241b2cfaca1ba225f312d439365d4410c94737fb/11/slim/Dockerfile)
- [`11.2.0-stretch`, `11.2-stretch`, `11-stretch`, `stretch`, `11.2.0`, `11.2`, `11`, `latest` (*11/stretch/Dockerfile*)](https://github.com/nodejs/docker-node/blob/241b2cfaca1ba225f312d439365d4410c94737fb/11/stretch/Dockerfile)
- [`10.13.0-jessie`, `10.13-jessie`, `10-jessie`, `dubnium-jessie`, `10.13.0`, `10.13`, `10`, `dubnium` (*10/jessie/Dockerfile*)](https://github.com/nodejs/docker-node/blob/336fb229392876a5f0d893436aeccf8c80011eeb/10/jessie/Dockerfile)
- [`10.13.0-alpine`, `10.13-alpine`, `10-alpine`, `dubnium-alpine` (*10/alpine/Dockerfile*)](https://github.com/nodejs/docker-node/blob/336fb229392876a5f0d893436aeccf8c80011eeb/10/alpine/Dockerfile)
- [`10.13.0-slim`, `10.13-slim`, `10-slim`, `dubnium-slim` (*10/slim/Dockerfile*)](https://github.com/nodejs/docker-node/blob/336fb229392876a5f0d893436aeccf8c80011eeb/10/slim/Dockerfile)

View File

@ -85,7 +85,7 @@ WARNING:
[https://github.com/docker-library/openjdk/issues](https://github.com/docker-library/openjdk/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/openjdk)
[the Docker Community](https://github.com/docker-library/openjdk)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/openjdk/), [`arm32v5`](https://hub.docker.com/r/arm32v5/openjdk/), [`arm32v6`](https://hub.docker.com/r/arm32v6/openjdk/), [`arm32v7`](https://hub.docker.com/r/arm32v7/openjdk/), [`arm64v8`](https://hub.docker.com/r/arm64v8/openjdk/), [`i386`](https://hub.docker.com/r/i386/openjdk/), [`ppc64le`](https://hub.docker.com/r/ppc64le/openjdk/), [`s390x`](https://hub.docker.com/r/s390x/openjdk/), [`windows-amd64`](https://hub.docker.com/r/winamd64/openjdk/)
@ -149,7 +149,7 @@ This will add your current directory as a volume to the container, set the worki
On startup JVM tries to detect the number of available CPU cores and the amount of RAM to adjust its internal parameters (like the number of garbage collector threads to spawn) accordingly. When container is run with limited CPU/RAM, standard system API, used by JVM for probing, will return host-wide values. This can cause excessive CPU usage and memory allocation errors with older versions of JVM.
Inside Linux containers, recent versions of OpenJDK 8 can correctly detect container-limited number of CPU cores by default. To enable the detection of container-limited amount of RAM the following options can be used:
Inside Linux containers, OpenJDK versions 8 and later can correctly detect container-limited number of CPU cores and available RAM. In OpenJDK 11 this is turned on by default. In versions 8, 9, and 10 you have to enable the detection of container-limited amount of RAM using the following options:
```console
$ java -XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap ...

View File

@ -34,7 +34,7 @@ This image has been deprecated in favor of the [official `owncloud/server` image
[https://github.com/docker-library/owncloud/issues](https://github.com/docker-library/owncloud/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/owncloud)
[the Docker Community](https://github.com/docker-library/owncloud)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/owncloud/), [`arm32v5`](https://hub.docker.com/r/arm32v5/owncloud/), [`arm32v7`](https://hub.docker.com/r/arm32v7/owncloud/), [`arm64v8`](https://hub.docker.com/r/arm64v8/owncloud/), [`i386`](https://hub.docker.com/r/i386/owncloud/), [`ppc64le`](https://hub.docker.com/r/ppc64le/owncloud/), [`s390x`](https://hub.docker.com/r/s390x/owncloud/)

View File

@ -29,7 +29,7 @@ WARNING:
[https://github.com/docker-library/percona/issues](https://github.com/docker-library/percona/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/percona)
[the Docker Community](https://github.com/docker-library/percona)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/percona/)

View File

@ -73,7 +73,7 @@ WARNING:
[https://github.com/docker-library/php/issues](https://github.com/docker-library/php/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/php)
[the Docker Community](https://github.com/docker-library/php)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/php/), [`arm32v5`](https://hub.docker.com/r/arm32v5/php/), [`arm32v6`](https://hub.docker.com/r/arm32v6/php/), [`arm32v7`](https://hub.docker.com/r/arm32v7/php/), [`arm64v8`](https://hub.docker.com/r/arm64v8/php/), [`i386`](https://hub.docker.com/r/i386/php/), [`ppc64le`](https://hub.docker.com/r/ppc64le/php/), [`s390x`](https://hub.docker.com/r/s390x/php/)

View File

@ -30,7 +30,7 @@ WARNING:
[https://github.com/docker-library/pypy/issues](https://github.com/docker-library/pypy/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/pypy)
[the Docker Community](https://github.com/docker-library/pypy)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/pypy/), [`arm32v5`](https://hub.docker.com/r/arm32v5/pypy/), [`i386`](https://hub.docker.com/r/i386/pypy/)

View File

@ -94,7 +94,7 @@ WARNING:
[https://github.com/docker-library/python/issues](https://github.com/docker-library/python/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/python)
[the Docker Community](https://github.com/docker-library/python)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/python/), [`arm32v5`](https://hub.docker.com/r/arm32v5/python/), [`arm32v6`](https://hub.docker.com/r/arm32v6/python/), [`arm32v7`](https://hub.docker.com/r/arm32v7/python/), [`arm64v8`](https://hub.docker.com/r/arm64v8/python/), [`i386`](https://hub.docker.com/r/i386/python/), [`ppc64le`](https://hub.docker.com/r/ppc64le/python/), [`s390x`](https://hub.docker.com/r/s390x/python/), [`windows-amd64`](https://hub.docker.com/r/winamd64/python/)

View File

@ -34,7 +34,7 @@ WARNING:
[https://github.com/docker-library/rabbitmq/issues](https://github.com/docker-library/rabbitmq/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/rabbitmq)
[the Docker Community](https://github.com/docker-library/rabbitmq)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/rabbitmq/), [`arm32v5`](https://hub.docker.com/r/arm32v5/rabbitmq/), [`arm32v6`](https://hub.docker.com/r/arm32v6/rabbitmq/), [`arm32v7`](https://hub.docker.com/r/arm32v7/rabbitmq/), [`arm64v8`](https://hub.docker.com/r/arm64v8/rabbitmq/), [`i386`](https://hub.docker.com/r/i386/rabbitmq/), [`ppc64le`](https://hub.docker.com/r/ppc64le/rabbitmq/), [`s390x`](https://hub.docker.com/r/s390x/rabbitmq/)

View File

@ -32,7 +32,7 @@ WARNING:
[https://github.com/docker-library/redis/issues](https://github.com/docker-library/redis/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/redis)
[the Docker Community](https://github.com/docker-library/redis)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/redis/), [`arm32v5`](https://hub.docker.com/r/arm32v5/redis/), [`arm32v6`](https://hub.docker.com/r/arm32v6/redis/), [`arm32v7`](https://hub.docker.com/r/arm32v7/redis/), [`arm64v8`](https://hub.docker.com/r/arm64v8/redis/), [`i386`](https://hub.docker.com/r/i386/redis/), [`ppc64le`](https://hub.docker.com/r/ppc64le/redis/), [`s390x`](https://hub.docker.com/r/s390x/redis/)

View File

@ -30,7 +30,7 @@ WARNING:
[https://github.com/docker-library/redmine/issues](https://github.com/docker-library/redmine/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/redmine)
[the Docker Community](https://github.com/docker-library/redmine)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/redmine/), [`arm32v5`](https://hub.docker.com/r/arm32v5/redmine/), [`arm32v7`](https://hub.docker.com/r/arm32v7/redmine/), [`arm64v8`](https://hub.docker.com/r/arm64v8/redmine/), [`i386`](https://hub.docker.com/r/i386/redmine/), [`ppc64le`](https://hub.docker.com/r/ppc64le/redmine/), [`s390x`](https://hub.docker.com/r/s390x/redmine/)

View File

@ -46,7 +46,7 @@ WARNING:
[https://github.com/docker-library/ruby/issues](https://github.com/docker-library/ruby/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/ruby)
[the Docker Community](https://github.com/docker-library/ruby)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/ruby/), [`arm32v5`](https://hub.docker.com/r/arm32v5/ruby/), [`arm32v6`](https://hub.docker.com/r/arm32v6/ruby/), [`arm32v7`](https://hub.docker.com/r/arm32v7/ruby/), [`arm64v8`](https://hub.docker.com/r/arm64v8/ruby/), [`i386`](https://hub.docker.com/r/i386/ruby/), [`ppc64le`](https://hub.docker.com/r/ppc64le/ruby/), [`s390x`](https://hub.docker.com/r/s390x/ruby/)

View File

@ -29,7 +29,7 @@ WARNING:
[https://github.com/31z4/storm-docker/issues](https://github.com/31z4/storm-docker/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/31z4/storm-docker)
[the Docker Community](https://github.com/31z4/storm-docker)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/storm/), [`arm32v6`](https://hub.docker.com/r/arm32v6/storm/), [`arm64v8`](https://hub.docker.com/r/arm64v8/storm/), [`i386`](https://hub.docker.com/r/i386/storm/), [`ppc64le`](https://hub.docker.com/r/ppc64le/storm/), [`s390x`](https://hub.docker.com/r/s390x/storm/)

View File

@ -29,7 +29,7 @@ WARNING:
[https://github.com/ahawkins/docker-thrift/issues](https://github.com/ahawkins/docker-thrift/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/ahawkins/docker-thrift)
[the Docker Community](https://github.com/ahawkins/docker-thrift)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/thrift/)

View File

@ -46,7 +46,7 @@ WARNING:
[https://github.com/docker-library/tomcat/issues](https://github.com/docker-library/tomcat/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/tomcat)
[the Docker Community](https://github.com/docker-library/tomcat)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/tomcat/), [`arm32v5`](https://hub.docker.com/r/arm32v5/tomcat/), [`arm32v6`](https://hub.docker.com/r/arm32v6/tomcat/), [`arm32v7`](https://hub.docker.com/r/arm32v7/tomcat/), [`arm64v8`](https://hub.docker.com/r/arm64v8/tomcat/), [`i386`](https://hub.docker.com/r/i386/tomcat/), [`ppc64le`](https://hub.docker.com/r/ppc64le/tomcat/), [`s390x`](https://hub.docker.com/r/s390x/tomcat/)

View File

@ -44,7 +44,7 @@ WARNING:
[https://github.com/tomitribe/docker-tomee/issues](https://github.com/tomitribe/docker-tomee/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/tomitribe/docker-tomee)
[the Docker Community](https://github.com/tomitribe/docker-tomee)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/tomee/), [`arm32v5`](https://hub.docker.com/r/arm32v5/tomee/), [`arm32v7`](https://hub.docker.com/r/arm32v7/tomee/), [`arm64v8`](https://hub.docker.com/r/arm64v8/tomee/), [`i386`](https://hub.docker.com/r/i386/tomee/), [`ppc64le`](https://hub.docker.com/r/ppc64le/tomee/), [`s390x`](https://hub.docker.com/r/s390x/tomee/)

View File

@ -79,13 +79,13 @@ You have to make sure that **all** the artifacts you are copying into the image
You have a few options for doing this: before copying the file, during copy, or after copy.
### Updating permissions before coyping
### Updating permissions before copying
Since the ownership of the file will change to `root:0`, you can simply set the permissions for the owner's group to be able to read/execute the artifact (i.e. the middle digit of a `chmod` command). For example, you can do `chmod g+rx server.xml` to ensure your `server.xml` can be `read` and `executed` by group `0`, as well as any artifacts such as the application's `EAR` or `WAR` file, JDBC driver, or other files that are placed on the image via `COPY` or `ADD`.
### Updating permissions during copy
If you're using Docker v17.09.0-ce and newer you can take advantage of the flag `--chown=<user>:<group>` during either `ADD` or `COPY`. For example: `COPY --chown=1001:0 jvm.options /config/jvm.options`
If you're using Docker v17.09.0-ce and newer you can take advantage of the flag `--chown=<user>:<group>` during either `ADD` or `COPY`. For example: `COPY --chown=1001:0 jvm.options /config/jvm.options`. This is the preferred approach as you don't need to worry about changing permissions before calling `docker build` and you also do not duplicate layers in the resulting image.
### Updating permissions after copy

View File

@ -42,7 +42,7 @@ WARNING:
[https://github.com/docker-library/wordpress/issues](https://github.com/docker-library/wordpress/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/docker-library/wordpress)
[the Docker Community](https://github.com/docker-library/wordpress)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/wordpress/), [`arm32v5`](https://hub.docker.com/r/arm32v5/wordpress/), [`arm32v6`](https://hub.docker.com/r/arm32v6/wordpress/), [`arm32v7`](https://hub.docker.com/r/arm32v7/wordpress/), [`arm64v8`](https://hub.docker.com/r/arm64v8/wordpress/), [`i386`](https://hub.docker.com/r/i386/wordpress/), [`ppc64le`](https://hub.docker.com/r/ppc64le/wordpress/), [`s390x`](https://hub.docker.com/r/s390x/wordpress/)

View File

@ -28,7 +28,7 @@ WARNING:
[https://github.com/31z4/zookeeper-docker/issues](https://github.com/31z4/zookeeper-docker/issues)
- **Maintained by**:
[the Elastic Team](https://github.com/31z4/zookeeper-docker)
[the Docker Community](https://github.com/31z4/zookeeper-docker)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/zookeeper/), [`arm32v6`](https://hub.docker.com/r/arm32v6/zookeeper/), [`arm64v8`](https://hub.docker.com/r/arm64v8/zookeeper/), [`i386`](https://hub.docker.com/r/i386/zookeeper/), [`ppc64le`](https://hub.docker.com/r/ppc64le/zookeeper/), [`s390x`](https://hub.docker.com/r/s390x/zookeeper/)