Fix wrong build commands in section 3.2.3

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2016-11-14 14:10:07 -08:00
Родитель 1a94ad11f5
Коммит bbe61e03fa
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -153,11 +153,11 @@ You are all set now. Navigate to each of the directories where you have a Docker
In order to build the images, make sure to replace `<YOUR_DOCKER_ID>` with your *Docker Hub username* in the following commands:
```
$ docker build --no-cache -t <YOUR_DOCKER_ID>/votingapp_voting-app .
$ docker build --no-cache -t <YOUR_DOCKER_ID>/votingapp_voting-app vote
...
$ docker build --no-cache -t <YOUR_DOCKER_ID>/votingapp_result-app .
$ docker build --no-cache -t <YOUR_DOCKER_ID>/votingapp_result-app result
...
$ docker build --no-cache -t <YOUR_DOCKER_ID>/votingapp_worker .
$ docker build --no-cache -t <YOUR_DOCKER_ID>/votingapp_worker worker
```
#### 3.2.4 Push images to Docker Hub