docs: remove extra tag creation

The `latest` tag is now automatically created on tags:deploy.

[ci skip]
This commit is contained in:
Jose Diaz-Gonzalez
2018-12-29 16:29:30 -05:00
committed by GitHub
parent 682c6256bc
commit 9f05bd0dc3

View File

@@ -163,7 +163,7 @@ docker build -t dokku/test-app:v12 .
# copy the image to the dokku host
docker save dokku/test-app:v12 | bzip2 | ssh my.dokku.host "bunzip2 | docker load"
# tag and deploy the image
ssh my.dokku.host "dokku tags:create test-app previous; dokku tags:deploy test-app v12 && dokku tags:create test-app latest"
ssh my.dokku.host "dokku tags:create test-app previous; dokku tags:deploy test-app v12"
```
## Related articles