Browse Source

Run update.sh

Docker Library Bot 7 years ago
parent
commit
9fa3cf22cc
4 changed files with 32 additions and 13 deletions
  1. 1 1
      composer/README.md
  2. 4 4
      php-zendserver/README.md
  3. 14 0
      rust/README.md
  4. 13 8
      traefik/README.md

+ 1 - 1
composer/README.md

@@ -16,7 +16,7 @@ WARNING:
 
 # Supported tags and respective `Dockerfile` links
 
--	[`1.6.3`, `1.6`, `1`, `latest` (*1.6/Dockerfile*)](https://github.com/composer/docker/blob/4b4c610a981fd8f41756648de4ba15d84e486282/1.6/Dockerfile)
+-	[`1.6.4`, `1.6`, `1`, `latest` (*1.6/Dockerfile*)](https://github.com/composer/docker/blob/ba89229d47e9b10db21513ee26c6de922a138310/1.6/Dockerfile)
 -	[`1.5.6`, `1.5` (*1.5/Dockerfile*)](https://github.com/composer/docker/blob/6c112b3c58d927257a0a3ddd1d1b3f784761fbf7/1.5/Dockerfile)
 -	[`1.4.3`, `1.4` (*1.4/Dockerfile*)](https://github.com/composer/docker/blob/ea0ec1efa4b15f4ad7b809793eecbb76633dcbb8/1.4/Dockerfile)
 

+ 4 - 4
php-zendserver/README.md

@@ -16,10 +16,10 @@ WARNING:
 
 # Supported tags and respective `Dockerfile` links
 
--	[`5.5`, `8.5-php5.5` (*8.5/5.5/Dockerfile*)](https://github.com/zendtech/php-zendserver-docker/blob/f28a8955e0d899aaca063ea73857200adc6712aa/8.5/5.5/Dockerfile)
--	[`5.6`, `8.5-php5.6`, `8.5` (*8.5/5.6/Dockerfile*)](https://github.com/zendtech/php-zendserver-docker/blob/f28a8955e0d899aaca063ea73857200adc6712aa/8.5/5.6/Dockerfile)
--	[`5.4`, `7.0-php5.4` (*7.0/5.4/Dockerfile*)](https://github.com/zendtech/php-zendserver-docker/blob/f28a8955e0d899aaca063ea73857200adc6712aa/7.0/5.4/Dockerfile)
--	[`9.1`, `latest` (*9.1/7.1/Dockerfile*)](https://github.com/zendtech/php-zendserver-docker/blob/f28a8955e0d899aaca063ea73857200adc6712aa/9.1/7.1/Dockerfile)
+-	[`5.5`, `8.5-php5.5` (*8.5/5.5/Dockerfile*)](https://github.com/zendtech/php-zendserver-docker/blob/86e6c5ccb9faaccc3944ef346ebbd9c181835ba7/8.5/5.5/Dockerfile)
+-	[`5.6`, `8.5-php5.6`, `8.5` (*8.5/5.6/Dockerfile*)](https://github.com/zendtech/php-zendserver-docker/blob/86e6c5ccb9faaccc3944ef346ebbd9c181835ba7/8.5/5.6/Dockerfile)
+-	[`5.4`, `7.0-php5.4` (*7.0/5.4/Dockerfile*)](https://github.com/zendtech/php-zendserver-docker/blob/86e6c5ccb9faaccc3944ef346ebbd9c181835ba7/7.0/5.4/Dockerfile)
+-	[`9.1`, `latest` (*9.1/7.1/Dockerfile*)](https://github.com/zendtech/php-zendserver-docker/blob/86e6c5ccb9faaccc3944ef346ebbd9c181835ba7/9.1/7.1/Dockerfile)
 
 # Quick reference
 

+ 14 - 0
rust/README.md

@@ -17,7 +17,9 @@ WARNING:
 # Supported tags and respective `Dockerfile` links
 
 -	[`1.25.0-stretch`, `1-stretch`, `1.25-stretch`, `stretch`, `1.25.0`, `1`, `1.25`, `latest` (*1.25.0/stretch/Dockerfile*)](https://github.com/rust-lang-nursery/docker-rust/blob/f18cebe3699016a654da86212fa90afaea7431a1/1.25.0/stretch/Dockerfile)
+-	[`1.25.0-slim-stretch`, `1-slim-stretch`, `1.25-slim-stretch`, `slim-stretch`, `1.25.0-slim`, `1-slim`, `1.25-slim`, `slim` (*1.25.0/stretch/slim/Dockerfile*)](https://github.com/rust-lang-nursery/docker-rust/blob/d271f62710367d3ccbc83a14093301261b22a831/1.25.0/stretch/slim/Dockerfile)
 -	[`1.25.0-jessie`, `1-jessie`, `1.25-jessie`, `jessie` (*1.25.0/jessie/Dockerfile*)](https://github.com/rust-lang-nursery/docker-rust/blob/f18cebe3699016a654da86212fa90afaea7431a1/1.25.0/jessie/Dockerfile)
+-	[`1.25.0-slim-jessie`, `1-slim-jessie`, `1.25-slim-jessie`, `slim-jessie` (*1.25.0/jessie/slim/Dockerfile*)](https://github.com/rust-lang-nursery/docker-rust/blob/677ebab2c8068d7f691925e0c848fb02ccdc5309/1.25.0/jessie/slim/Dockerfile)
 
 # Quick reference
 
@@ -89,6 +91,18 @@ $ docker run --rm --user "$(id -u)":"$(id -g)" -v "$PWD":/usr/src/myapp -w /usr/
 
 This will add your current directory, as a volume, to the container, set the working directory to the volume, and run the command `cargo build --release`. This tells Cargo, Rust's build system, to compile the crate in `myapp` and output the executable to `target/release/myapp`.
 
+# Image Variants
+
+The `rust` images come in many flavors, each designed for a specific use case.
+
+## `rust:<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.
+
+## `rust:slim`
+
+This image does not contain the common packages contained in the default tag and only contains the minimal packages needed to run `rust`. Unless you are working in an environment where *only* the `rust` image will be deployed and you have space constraints, we highly recommend using the default image of this repository.
+
 # License
 
 View [license information](https://www.rust-lang.org/en-US/legal.html) for the software contained in this image.

+ 13 - 8
traefik/README.md

@@ -16,8 +16,8 @@ WARNING:
 
 # Supported tags and respective `Dockerfile` links
 
--	[`v1.6.0-rc5`, `1.6.0-rc5`, `v1.6`, `1.6`, `tetedemoine` (*scratch/amd64/Dockerfile*)](https://github.com/containous/traefik-library-image/blob/abcff7fa7c11547d8834b835b9ecedce49c3a441/scratch/amd64/Dockerfile)
--	[`v1.6.0-rc5-alpine`, `1.6.0-rc5-alpine`, `v1.6-alpine`, `1.6-alpine`, `tetedemoine-alpine` (*alpine/Dockerfile*)](https://github.com/containous/traefik-library-image/blob/abcff7fa7c11547d8834b835b9ecedce49c3a441/alpine/Dockerfile)
+-	[`v1.6.0-rc6`, `1.6.0-rc6`, `v1.6`, `1.6`, `tetedemoine` (*scratch/amd64/Dockerfile*)](https://github.com/containous/traefik-library-image/blob/7f4ebf3c24e795fda65836dadd94af4403447a7f/scratch/amd64/Dockerfile)
+-	[`v1.6.0-rc6-alpine`, `1.6.0-rc6-alpine`, `v1.6-alpine`, `1.6-alpine`, `tetedemoine-alpine` (*alpine/Dockerfile*)](https://github.com/containous/traefik-library-image/blob/7f4ebf3c24e795fda65836dadd94af4403447a7f/alpine/Dockerfile)
 -	[`v1.5.4`, `1.5.4`, `v1.5`, `1.5`, `cancoillotte`, `latest` (*scratch/amd64/Dockerfile*)](https://github.com/containous/traefik-library-image/blob/a0b61256a1c3df401f43cf01b940f3a69fb77883/scratch/amd64/Dockerfile)
 -	[`v1.5.4-alpine`, `1.5.4-alpine`, `v1.5-alpine`, `1.5-alpine`, `cancoillotte-alpine`, `alpine` (*alpine/Dockerfile*)](https://github.com/containous/traefik-library-image/blob/a0b61256a1c3df401f43cf01b940f3a69fb77883/alpine/Dockerfile)
 
@@ -51,7 +51,11 @@ WARNING:
 
 ![logo](https://raw.githubusercontent.com/docker-library/docs/a6cc2c5f4bc6658168f2a0abbb0307acaefff80e/traefik/logo.png)
 
-[Træfɪk](https://github.com/containous/traefik) is a modern HTTP reverse proxy and load balancer made to deploy microservices with ease. It supports several backends ([Docker :whale:](https://www.docker.com/), [Swarm :whale::whale:](https://github.com/docker/swarm), [Mesos/Marathon](https://mesosphere.github.io/marathon/), [Consul](https://www.consul.io/), [Etcd](https://coreos.com/etcd/), [Zookeeper](https://zookeeper.apache.org), [BoltDB](https://github.com/boltdb/bolt), Rest API, file...) to manage its configuration automatically and dynamically.
+[Træfɪk](https://github.com/containous/traefik) is a modern HTTP reverse proxy and load balancer that makes deploying microservices easy.
+
+Træfik integrates with your existing infrastructure components ([Docker](https://www.docker.com/), [Swarm mode](https://docs.docker.com/engine/swarm/), [Kubernetes](https://kubernetes.io), [Marathon](https://mesosphere.github.io/marathon/), [Consul](https://www.consul.io/), [Etcd](https://coreos.com/etcd/), [Rancher](https://rancher.com), [Amazon ECS](https://aws.amazon.com/ecs), ...) and configures itself automatically and dynamically.
+
+Telling Træfik where your orchestrator is could be the *only* configuration step you need to do.
 
 # Example usage
 
@@ -59,10 +63,9 @@ Grab a [sample configuration file](https://raw.githubusercontent.com/containous/
 
 ```toml
 ################################################################
-# Web configuration backend
+# API and dashboard configuration
 ################################################################
-[web]
-address = ":8080"
+[api]
 ################################################################
 # Docker configuration backend
 ################################################################
@@ -109,11 +112,13 @@ X-Forwarded-Server: f2e05c433120
 
 The web UI [http://localhost:8080](http://localhost:8080) will give you an overview of the frontends/backends and also a health dashboard.
 
-![Web UI Providers](https://traefik.io/web.frontend.png)
+![Web UI Providers](https://github.com/containous/traefik/blob/master/docs/img/web.frontend.png)
 
 # Documentation
 
-You can find the complete documentation [here](https://docs.traefik.io).
+You can find the complete documentation at [https://docs.traefik.io](https://docs.traefik.io).
+
+A collection of contributions around Træfik can be found at [https://awesome.traefik.io](https://awesome.traefik.io).
 
 # License