Fixed typo

This commit is contained in:
tompizmor
2017-03-03 13:30:56 +01:00
committed by GitHub
parent 1d31d4b584
commit ca2cfcffe6

View File

@@ -74,7 +74,7 @@ If you want to run the application manually instead of using docker-compose, the
2. Start a MariaDB database in the network generated:
```bash
$ docker run -d --name mariadb -e ALLOW_EMPTY_PASSWORD=yes -e ALLOW_EMPTY_PASSWORD=yes --net drupal-tier bitnami/mariadb:latest
$ docker run -d --name mariadb -e ALLOW_EMPTY_PASSWORD=yes --net drupal-tier bitnami/mariadb:latest
```
*Note:* You need to give the container a name in order to Drupal to resolve the host
@@ -134,7 +134,7 @@ services:
2. Create a MariaDB container with host volume:
```bash
$ docker run -d --name mariadb -e ALLOW_EMPTY_PASSWORD=yes -e ALLOW_EMPTY_PASSWORD=yes \
$ docker run -d --name mariadb -e ALLOW_EMPTY_PASSWORD=yes \
--net drupal-tier \
--volume /path/to/mariadb-persistence:/bitnami/mariadb \
bitnami/mariadb:latest