From 9f05bd0dc3a36477cbd7b3cf97be950714ff92fa Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 29 Dec 2018 16:29:30 -0500 Subject: [PATCH] docs: remove extra tag creation The `latest` tag is now automatically created on tags:deploy. [ci skip] --- docs/deployment/methods/images.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deployment/methods/images.md b/docs/deployment/methods/images.md index 10d8db3f2..f10d05ac2 100644 --- a/docs/deployment/methods/images.md +++ b/docs/deployment/methods/images.md @@ -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