docs: re-add new sections

[ci skip]
This commit is contained in:
Jose Diaz-Gonzalez
2017-06-09 14:38:14 -04:00
committed by GitHub
parent bec6c6bd66
commit 1c6eacd756

View File

@@ -158,3 +158,12 @@ Here's a more complete example using the above method:
# build the image
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"
```
## Related articles
- [Setting up Persistent Storage](/docs/advanced-usage/persistent-storage.md)
- [Defining Environment Variables](/docs/configuration/environment-variables.md)
- [Setting up the Ports](/docs/advanced-usage/proxy-management.md)