diff --git a/crate/README.md b/crate/README.md index aca82d274..eeaadf39c 100644 --- a/crate/README.md +++ b/crate/README.md @@ -16,8 +16,9 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`latest`, `1.0`, `1.0.6` (*Dockerfile*)](https://github.com/crate/docker-crate/blob/89e1557944b257c9e56b0e93a458eb6f0238ece3/Dockerfile) +- [`latest`, `1.1.2` (*Dockerfile*)](https://github.com/crate/docker-crate/blob/2b402ff0c49a3334e5e72ba9f1f55c23f05bd88b/Dockerfile) - [`0.57`, `0.57.6` (*Dockerfile*)](https://github.com/crate/docker-crate/blob/54ceb9d7065ee853faf3b050ddaeeee3580585b8/Dockerfile) +- [`1.0`, `1.0.6` (*Dockerfile*)](https://github.com/crate/docker-crate/blob/89e1557944b257c9e56b0e93a458eb6f0238ece3/Dockerfile) For detailed information about the published artifacts of each of the above supported tags (image metadata, transfer size, etc), please see [the `repos/crate` directory](https://github.com/docker-library/repo-info/blob/master/repos/crate) in [the `docker-library/repo-info` GitHub repo](https://github.com/docker-library/repo-info). diff --git a/mariadb/README.md b/mariadb/README.md index 959ce75ed..39fbc822e 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -144,10 +144,6 @@ This is an optional variable. Set to `yes` to allow the container to be started 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 with the specified name will be created and initialized with the provided configuration variables. Furthermore, it will execute files with extensions `.sh`, `.sql` and `.sql.gz` that are found in `/docker-entrypoint-initdb.d`. Files will be executed in alphabetical order. You can easily populate your mariadb services by [mounting a SQL dump into that directory](https://docs.docker.com/engine/tutorials/dockervolumes/#mount-a-host-file-as-a-data-volume) and provide [custom images](https://docs.docker.com/reference/builder/) with contributed data. SQL files will be imported by default to the database specified by the `MYSQL_DATABASE` variable.