Fix typo in network creation

This commit is contained in:
raquel-campuzano
2016-11-17 17:19:53 +01:00
parent 1725af8ac9
commit 9fb6d7b63e

View File

@@ -112,14 +112,14 @@ In this case you need to specify the directories to mount on the run command. Th
1. Create a network (if it does not exist):
```
$ docker network create prestashop
$ docker network create prestashop-tier
```
2. Create a MariaDB container with host volume:
```
$ docker run -d --name mariadb \
--net prestashop \
--net prestashop-tier \
--volume /path/to/mariadb-persistence:/bitnami/mariadb \
bitnami/mariadb:latest
```
@@ -130,7 +130,7 @@ In this case you need to specify the directories to mount on the run command. Th
```
$ docker run -d --name prestashop -p 80:80 -p 443:443 \
--net prestashop \
--net prestashop-tier \
--volume /path/to/prestashop-persistence:/bitnami/prestashop \
--volume /path/to/apache-persistence:/bitnami/apache \
--volume /path/to/php-persistence:/bitnami/php \