From 0c4d28f3acd3525dad136d04c5ad2bf8054c5de4 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 22 May 2018 18:09:22 +0000 Subject: [PATCH] Run update.sh --- arangodb/README.md | 2 +- mongo/README.md | 2 +- php/README.md | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index c8d9d28ec..9fe035f4a 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -17,8 +17,8 @@ WARNING: # Supported tags and respective `Dockerfile` links - [`2.8`, `2.8.11` (*jessie/2.8.11/Dockerfile*)](https://github.com/arangodb/arangodb-docker/blob/d6fca9a137cd21345b1d380fc0e72daacb6130ce/jessie/2.8.11/Dockerfile) -- [`3.3`, `3.3.8`, `latest` (*stretch/3.3.8/Dockerfile*)](https://github.com/arangodb/arangodb-docker/blob/a13a8efe6f62b70d8d60498118bfc16bcf6809f5/stretch/3.3.8/Dockerfile) - [`3.2`, `3.2.15` (*stretch/3.2.15/Dockerfile*)](https://github.com/arangodb/arangodb-docker/blob/cc4106a5a7cdb75c1ab9798cd2b75248f7745204/stretch/3.2.15/Dockerfile) +- [`3.3`, `3.3.9`, `latest` (*stretch/3.3.9/Dockerfile*)](https://github.com/arangodb/arangodb-docker/blob/94a860d2591120a674b964e840a4bea1d4b1f36b/stretch/3.3.9/Dockerfile) # Quick reference diff --git a/mongo/README.md b/mongo/README.md index c76f86c2b..6d651ef5a 100644 --- a/mongo/README.md +++ b/mongo/README.md @@ -186,7 +186,7 @@ These variables, used in conjunction, create a new user and set that user's pass ```console $ docker run -d --name some-mongo -e MONGO_INITDB_ROOT_USERNAME=mongoadmin -e MONGO_INITDB_ROOT_PASSWORD=secret mongo -$ docker run -it --rm --link some-mongo:mongo mongo mongo --host mongo -u mongoadmin -p secret --authenticationDatabase some-db +$ docker run -it --rm --link some-mongo:mongo mongo mongo --host mongo -u mongoadmin -p secret --authenticationDatabase admin some-db > db.getName(); some-db ``` diff --git a/php/README.md b/php/README.md index dedffa139..46fd007f9 100644 --- a/php/README.md +++ b/php/README.md @@ -167,6 +167,8 @@ RUN sed -ri -e 's!/var/www/!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/apache2.conf ## How to install more PHP extensions +Many extensions are already compiled into the image, so it's worth checking the output of `php -m` or `php -i` before going through the effort of compiling more. + We provide the helper scripts `docker-php-ext-configure`, `docker-php-ext-install`, and `docker-php-ext-enable` to more easily install PHP extensions. In order to keep the images smaller, PHP's source is kept in a compressed tar file. To facilitate linking of PHP's source with any extension, we also provide the helper script `docker-php-source` to easily extract the tar or delete the extracted source. Note: if you do use `docker-php-source` to extract the source, be sure to delete it in the same layer of the docker image.