Răsfoiți Sursa

Run update.sh

Docker Library Bot 10 ani în urmă
părinte
comite
da2b00475e
4 a modificat fișierele cu 26 adăugiri și 9 ștergeri
  1. 1 1
      arangodb/README.md
  2. 3 3
      crate/README.md
  3. 18 1
      erlang/README.md
  4. 4 4
      node/README.md

+ 1 - 1
arangodb/README.md

@@ -18,7 +18,7 @@ The supported data models can be mixed in queries and allow ArangoDB to be the a
 
 ![logo](https://raw.githubusercontent.com/docker-library/docs/master/arangodb/logo.png)
 
-##Key Features in ArangoDB
+## Key Features in ArangoDB
 
 **Multi-Model** Documents, graphs and key-value pairs — model your data as you see fit for your application.
 

+ 3 - 3
crate/README.md

@@ -9,9 +9,9 @@ For detailed information about the virtual/transfer sizes and individual layers
 
 # What is Crate?
 
-Crate is an Elastic SQL Data Store. Distributed by design, Crate makes centralized database servers obsolete. Realtime non-blocking SQL engine with full blown search. Highly available, massively scalable yet simple to use.
+Crate allows to query and compute data with SQL in real time by providing a distributed aggregation engine, native search and super simple scalability. It offers auto-sharding and replication, super-fast multi index queries, distributed aggregations and sort, superfast full-text search, and super simple cluster management.
 
-[Crate](https:/crate.io/)
+[Crate](https://crate.io/)
 
 ![logo](https://raw.githubusercontent.com/docker-library/docs/master/crate/logo.png)
 
@@ -112,7 +112,7 @@ Documentation for this image is stored in the [`crate/` directory](https://githu
 
 If you have any problems with or questions about this image, please contact us through a [GitHub issue](https://github.com/crate/docker-crate/issues).
 
-If you have any questions or suggestions we would be very happy to help you. So, feel free to swing by our IRC channel `#crate` on [Freenode](http://freenode.net).
+If you have any questions or suggestions we would be very happy to help you. So, feel free to join our [Gitter Channel](https://gitter.im/crate/crate).
 
 For further information and official contact please visit [https://crate.io](https://crate.io).
 

+ 18 - 1
erlang/README.md

@@ -1,6 +1,7 @@
 # Supported tags and respective `Dockerfile` links
 
--	[`18.1.3`, `18.1`, `18`, `latest` (*18/Dockerfile*)](https://github.com/c0b/docker-erlang-otp/blob/70fd1e32745cbc68e894d340b105f30b387966c8/18/Dockerfile)
+-	[`18.1.4`, `18.1`, `18`, `latest` (*18/Dockerfile*)](https://github.com/c0b/docker-erlang-otp/blob/20e41464075dc0fc76709be77701530eddb6fe33/18/Dockerfile)
+-	[`18.1.4-onbuild`, `18.1-onbuild`, `18-onbuild`, `onbuild` (*18/onbuild/Dockerfile*)](https://github.com/c0b/docker-erlang-otp/blob/20e41464075dc0fc76709be77701530eddb6fe33/18/onbuild/Dockerfile)
 -	[`17.5.6.4`, `17.5`, `17` (*17/Dockerfile*)](https://github.com/c0b/docker-erlang-otp/blob/70fd1e32745cbc68e894d340b105f30b387966c8/17/Dockerfile)
 
 For more information about this image and its history, please see [the relevant manifest file (`library/erlang`)](https://github.com/docker-library/official-images/blob/master/library/erlang). This image is updated via pull requests to [the `docker-library/official-images` GitHub repo](https://github.com/docker-library/official-images).
@@ -56,6 +57,22 @@ User switch command
 $ docker run -it --rm --name erlang-inst1 -v "$PWD":/usr/src/myapp -w /usr/src/myapp erlang escript your-escript.erl
 ```
 
+# Image Variants
+
+The `erlang` images come in many flavors, each designed for a specific use case.
+
+## `erlang:<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. This tag is based off of [`buildpack-deps`](https://registry.hub.docker.com/_/buildpack-deps/). `buildpack-deps` is designed for the average user of docker who has many images on their system. It, by design, has a large number of extremely common Debian packages. This reduces the number of packages that images that derive from it need to install, thus reducing the overall size of all images on your system.
+
+## `erlang:onbuild`
+
+This image makes building derivative images easier. For most use cases, creating a `Dockerfile` in the base of your project directory with the line `FROM erlang:onbuild` will be enough to create a stand-alone image for your project.
+
+While the `onbuild` variant is really useful for "getting off the ground running" (zero to Dockerized in a short period of time), it's not recommended for long-term usage within a project due to the lack of control over *when* the `ONBUILD` triggers fire (see also [`docker/docker#5714`](https://github.com/docker/docker/issues/5714), [`docker/docker#8240`](https://github.com/docker/docker/issues/8240), [`docker/docker#11917`](https://github.com/docker/docker/issues/11917)).
+
+Once you've got a handle on how your project functions within Docker, you'll probably want to adjust your `Dockerfile` to inherit from a non-`onbuild` variant and copy the commands from the `onbuild` variant `Dockerfile` (moving the `ONBUILD` lines to the end and removing the `ONBUILD` keywords) into your own file so that you have tighter control over them and more transparency for yourself and others looking at your `Dockerfile` as to what it does. This also makes it easier to add additional requirements as time goes on (such as installing more packages before performing the previously-`ONBUILD` steps).
+
 # License
 
 View [license information](http://www.erlang.org/about.html) for the software contained in this image.

+ 4 - 4
node/README.md

@@ -12,10 +12,10 @@
 -	[`4.2.2-onbuild`, `4.2-onbuild`, `4-onbuild`, `argon-onbuild` (*4.2/onbuild/Dockerfile*)](https://github.com/nodejs/docker-node/blob/9992908b275546d9dc1b6063a4d0b7bc500e8b3b/4.2/onbuild/Dockerfile)
 -	[`4.2.2-slim`, `4.2-slim`, `4-slim`, `argon-slim` (*4.2/slim/Dockerfile*)](https://github.com/nodejs/docker-node/blob/9992908b275546d9dc1b6063a4d0b7bc500e8b3b/4.2/slim/Dockerfile)
 -	[`4.2.2-wheezy`, `4.2-wheezy`, `4-wheezy`, `argon-wheezy` (*4.2/wheezy/Dockerfile*)](https://github.com/nodejs/docker-node/blob/9992908b275546d9dc1b6063a4d0b7bc500e8b3b/4.2/wheezy/Dockerfile)
--	[`5.0.0`, `5.0`, `5`, `latest` (*5.0/Dockerfile*)](https://github.com/nodejs/docker-node/blob/2445743c1453941f787b0aa22cca51c62a1a3f09/5.0/Dockerfile)
--	[`5.0.0-onbuild`, `5.0-onbuild`, `5-onbuild`, `onbuild` (*5.0/onbuild/Dockerfile*)](https://github.com/nodejs/docker-node/blob/2445743c1453941f787b0aa22cca51c62a1a3f09/5.0/onbuild/Dockerfile)
--	[`5.0.0-slim`, `5.0-slim`, `5-slim`, `slim` (*5.0/slim/Dockerfile*)](https://github.com/nodejs/docker-node/blob/2445743c1453941f787b0aa22cca51c62a1a3f09/5.0/slim/Dockerfile)
--	[`5.0.0-wheezy`, `5.0-wheezy`, `5-wheezy`, `wheezy` (*5.0/wheezy/Dockerfile*)](https://github.com/nodejs/docker-node/blob/2445743c1453941f787b0aa22cca51c62a1a3f09/5.0/wheezy/Dockerfile)
+-	[`5.1.0`, `5.1`, `5`, `latest` (*5.1/Dockerfile*)](https://github.com/nodejs/docker-node/blob/3622304ad09a84826521e81cb7ddf253c020d89e/5.1/Dockerfile)
+-	[`5.1.0-onbuild`, `5.1-onbuild`, `5-onbuild`, `onbuild` (*5.1/onbuild/Dockerfile*)](https://github.com/nodejs/docker-node/blob/3622304ad09a84826521e81cb7ddf253c020d89e/5.1/onbuild/Dockerfile)
+-	[`5.1.0-slim`, `5.1-slim`, `5-slim`, `slim` (*5.1/slim/Dockerfile*)](https://github.com/nodejs/docker-node/blob/3622304ad09a84826521e81cb7ddf253c020d89e/5.1/slim/Dockerfile)
+-	[`5.1.0-wheezy`, `5.1-wheezy`, `5-wheezy`, `wheezy` (*5.1/wheezy/Dockerfile*)](https://github.com/nodejs/docker-node/blob/3622304ad09a84826521e81cb7ddf253c020d89e/5.1/wheezy/Dockerfile)
 
 For more information about this image and its history, please see [the relevant manifest file (`library/node`)](https://github.com/docker-library/official-images/blob/master/library/node). This image is updated via pull requests to [the `docker-library/official-images` GitHub repo](https://github.com/docker-library/official-images).