From 5df40d9ca749758b453e1e23ea74fef8fa81735b Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 5 Jul 2016 17:16:31 -0700 Subject: [PATCH] Run update.sh --- mariadb/README.md | 8 ++++++++ mysql/README.md | 8 ++++++++ percona/README.md | 8 ++++++++ traefik/README.md | 4 ++-- 4 files changed, 26 insertions(+), 2 deletions(-) diff --git a/mariadb/README.md b/mariadb/README.md index 07506e1cd..ae05c1a9f 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -120,6 +120,14 @@ Do note that there is no need to use this mechanism to create the root superuser This is an optional variable. Set to `yes` to allow the container to be started with a blank password for the root user. *NOTE*: Setting this variable to `yes` is not recommended unless you really know what you are doing, since this will leave your MariaDB instance completely unprotected, allowing anyone to gain complete superuser access. +### `MYSQL_RANDOM_ROOT_PASSWORD` + +This is an optional variable. Set to `yes` to generate a random initial password for the root user (using `pwgen`). The generated root password will be printed to stdout (`GENERATED ROOT PASSWORD: .....`). + +### `MYSQL_ONETIME_PASSWORD` + +Sets root (*not* the user specified in `MYSQL_USER`!) user as expired once init is complete, forcing a password change on first login. *NOTE*: This feature is supported on MySQL 5.6+ only. Using this option on MySQL 5.5 will throw an appropriate error during initialization. + # Initializing a fresh instance When a container is started for the first time, a new database `mysql` will be initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh` and `.sql` that are found in `/docker-entrypoint-initdb.d`. You can easily populate your mariadb services by [mounting a SQL dump into that directory](https://docs.docker.com/userguide/dockervolumes/#mount-a-host-file-as-a-data-volume) and provide [custom images](https://docs.docker.com/reference/builder/) with contributed data. diff --git a/mysql/README.md b/mysql/README.md index 54cfe6d78..e7d2a5d75 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -118,6 +118,14 @@ Do note that there is no need to use this mechanism to create the root superuser This is an optional variable. Set to `yes` to allow the container to be started with a blank password for the root user. *NOTE*: Setting this variable to `yes` is not recommended unless you really know what you are doing, since this will leave your MySQL instance completely unprotected, allowing anyone to gain complete superuser access. +### `MYSQL_RANDOM_ROOT_PASSWORD` + +This is an optional variable. Set to `yes` to generate a random initial password for the root user (using `pwgen`). The generated root password will be printed to stdout (`GENERATED ROOT PASSWORD: .....`). + +### `MYSQL_ONETIME_PASSWORD` + +Sets root (*not* the user specified in `MYSQL_USER`!) user as expired once init is complete, forcing a password change on first login. *NOTE*: This feature is supported on MySQL 5.6+ only. Using this option on MySQL 5.5 will throw an appropriate error during initialization. + # Initializing a fresh instance When a container is started for the first time, a new database `mysql` will be initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh` and `.sql` that are found in `/docker-entrypoint-initdb.d`. You can easily populate your mysql services by [mounting a SQL dump into that directory](https://docs.docker.com/userguide/dockervolumes/#mount-a-host-file-as-a-data-volume) and provide [custom images](https://docs.docker.com/reference/builder/) with contributed data. diff --git a/percona/README.md b/percona/README.md index 640eb6d80..85b447995 100644 --- a/percona/README.md +++ b/percona/README.md @@ -120,6 +120,14 @@ Do note that there is no need to use this mechanism to create the root superuser This is an optional variable. Set to `yes` to allow the container to be started with a blank password for the root user. *NOTE*: Setting this variable to `yes` is not recommended unless you really know what you are doing, since this will leave your Percona instance completely unprotected, allowing anyone to gain complete superuser access. +### `MYSQL_RANDOM_ROOT_PASSWORD` + +This is an optional variable. Set to `yes` to generate a random initial password for the root user (using `pwgen`). The generated root password will be printed to stdout (`GENERATED ROOT PASSWORD: .....`). + +### `MYSQL_ONETIME_PASSWORD` + +Sets root (*not* the user specified in `MYSQL_USER`!) user as expired once init is complete, forcing a password change on first login. *NOTE*: This feature is supported on MySQL 5.6+ only. Using this option on MySQL 5.5 will throw an appropriate error during initialization. + # Initializing a fresh instance When a container is started for the first time, a new database `mysql` will be initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh` and `.sql` that are found in `/docker-entrypoint-initdb.d`. You can easily populate your percona services by [mounting a SQL dump into that directory](https://docs.docker.com/userguide/dockervolumes/#mount-a-host-file-as-a-data-volume) and provide [custom images](https://docs.docker.com/reference/builder/) with contributed data. diff --git a/traefik/README.md b/traefik/README.md index ac5a3b2ce..05c3a4c0b 100644 --- a/traefik/README.md +++ b/traefik/README.md @@ -1,8 +1,8 @@ # Supported tags and respective `Dockerfile` links -- [`v1.0.0-rc3`, `latest` (*Dockerfile*)](https://github.com/containous/traefik-library-image/blob/2044fcf109b6dc28e71cc5d351f45363115b71ae/Dockerfile) +- [`v1.0.0`, `reblochon`, `latest` (*Dockerfile*)](https://github.com/containous/traefik-library-image/blob/556367439faa4266171318b433201e3fdd7f81f2/Dockerfile) -[![](https://badge.imagelayers.io/traefik:latest.svg)](https://imagelayers.io/?images=traefik:v1.0.0-rc3) +[![](https://badge.imagelayers.io/traefik:latest.svg)](https://imagelayers.io/?images=traefik:v1.0.0) For more information about this image and its history, please see [the relevant manifest file (`library/traefik`)](https://github.com/docker-library/official-images/blob/master/library/traefik). This image is updated via [pull requests to the `docker-library/official-images` GitHub repo](https://github.com/docker-library/official-images/pulls?q=label%3Alibrary%2Ftraefik).