Run update.sh
This commit is contained in:
parent
def1444f7f
commit
0c4d28f3ac
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
```
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in New Issue