From 720d37dc5de12692ac5a36c41ad616c91c794f26 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 1 Mar 2021 02:09:47 -0500 Subject: [PATCH] docs: update links to builder documentation to avoid extra rewrite --- HISTORY.md | 2 +- docs/appendices/0.5.0-migration-guide.md | 2 +- docs/deployment/application-deployment.md | 8 ++++---- docs/deployment/builders/cloud-native-buildpacks.md | 2 +- docs/deployment/methods/git.md | 6 +++--- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index a7c86707d..f0021f223 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -3144,7 +3144,7 @@ This is our largest, most feature-packed release in the history of the dokku pro - Support for docker 1.10/1.11. You *must* have docker 1.9.1+ to install dokku. - Revamped documentation website - [Deployment Tasks](https://dokku.com/docs/advanced-usage/deployment-tasks/) -- Heroku-style management of [dockerfile processes](https://dokku.com/docs/deployment/methods/dockerfiles/#procfiles-and-multiple-processes) +- Heroku-style management of [dockerfile processes](https://dokku.com/docs/deployment/builders/dockerfiles/#procfiles-and-multiple-processes) - Official [persistent storage plugin](https://dokku.com/docs/advanced-usage/persistent-storage/) We'd also love it if you welcomed a few new core developers: diff --git a/docs/appendices/0.5.0-migration-guide.md b/docs/appendices/0.5.0-migration-guide.md index 2cd5efa2c..2daba27dd 100644 --- a/docs/appendices/0.5.0-migration-guide.md +++ b/docs/appendices/0.5.0-migration-guide.md @@ -20,6 +20,6 @@ ## Dockerfile apps with exposed ports -- Dockerfiles with `EXPOSE` clauses will get [all **tcp** ports proxied by default](/docs/deployment/methods/dockerfiles.md#exposed-ports) +- Dockerfiles with `EXPOSE` clauses will get [all **tcp** ports proxied by default](/docs/deployment/builders/dockerfiles.md#exposed-ports) - Note that nginx will proxy the same port numbers to listen publicly - UDP ports can be exposed by disabling the [nginx proxy](/docs/networking/proxy-management.md) with `dokku proxy:disable node-js-app` diff --git a/docs/deployment/application-deployment.md b/docs/deployment/application-deployment.md index 83dafd350..0767b422e 100644 --- a/docs/deployment/application-deployment.md +++ b/docs/deployment/application-deployment.md @@ -102,9 +102,9 @@ Once the deploy is complete, the application's web URL will be generated as abov Dokku supports deploying applications in a few ways: -- [Heroku buildpacks](https://devcenter.heroku.com/articles/buildpacks) via [Herokuish](https://github.com/gliderlabs/herokuish#buildpacks): See the [herokuish buildpacks documentation](/docs/deployment/methods/herokuish-buildpacks.md) to learn about the different ways to specify a buildpack. +- [Heroku buildpacks](https://devcenter.heroku.com/articles/buildpacks) via [Herokuish](https://github.com/gliderlabs/herokuish#buildpacks): See the [herokuish buildpacks documentation](/docs/deployment/builders/herokuish-buildpacks.md) to learn about the different ways to specify a buildpack. - This is the default method used by Dokku. -- [Dockerfile](https://docs.docker.com/reference/builder/): See the [dockerfile documentation](/docs/deployment/methods/dockerfiles.md) to learn about the different ways to configure Dockerfile-based deploys. +- [Dockerfile](https://docs.docker.com/reference/builder/): See the [dockerfile documentation](/docs/deployment/builders/dockerfiles.md) to learn about the different ways to configure Dockerfile-based deploys. - [Docker Image](https://docs.docker.com/get-started/overview/#docker-objects): See the [docker image documentation](/docs/deployment/methods/images.md) to learn about how to deploy a Docker Image. ### Skipping deployment @@ -205,7 +205,7 @@ See the [Git documentation](/docs/deployment/methods/git.md#changing-the-deploy- ## Dockerfile deployment -See the [Dockerfile documentation](/docs/deployment/methods/dockerfiles.md) for information Dokku's Dockerfile support. +See the [Dockerfile documentation](/docs/deployment/builders/dockerfiles.md) for information Dokku's Dockerfile support. ## Image tagging @@ -213,7 +213,7 @@ See the [image tagging documentation](/docs/deployment/methods/images.md) for mo ## Specifying a custom buildpack -See the [herokuish buildpack documentation](/docs/deployment/methods/herokuish-buildpacks.md) for more information on how to specify a set of custom buildpacks for your application. +See the [herokuish buildpack documentation](/docs/deployment/builders/herokuish-buildpacks.md) for more information on how to specify a set of custom buildpacks for your application. ## Removing a deployed app diff --git a/docs/deployment/builders/cloud-native-buildpacks.md b/docs/deployment/builders/cloud-native-buildpacks.md index 95df0b51a..17d2734cd 100644 --- a/docs/deployment/builders/cloud-native-buildpacks.md +++ b/docs/deployment/builders/cloud-native-buildpacks.md @@ -6,7 +6,7 @@ buildpacks:set-property [--global|] # Set or clear a buildpacks property for an app ``` -Cloud Native Buildpacks are an evolution over the Buildpacks technology provided by the Herokuish builder. See the [herokuish buildpacks documentation](/docs/deployment/methods/herokuish-buildpacks.md) for more information on how to clear buildpack build cache for an application. +Cloud Native Buildpacks are an evolution over the Buildpacks technology provided by the Herokuish builder. See the [herokuish buildpacks documentation](/docs/deployment/builders/herokuish-buildpacks.md) for more information on how to clear buildpack build cache for an application. > Warning: This functionality uses the `pack` cli from the [Cloud Native Buildpacks](https://buildpacks.io) project to build apps. As the integration is experimental in Dokku, it is likely to change over time. diff --git a/docs/deployment/methods/git.md b/docs/deployment/methods/git.md index fc5626cfb..127cb6a83 100644 --- a/docs/deployment/methods/git.md +++ b/docs/deployment/methods/git.md @@ -14,9 +14,9 @@ git:set () # Set or clear a git property Git-based deployment has been the traditional method of deploying applications in Dokku. As of v0.12.0, Dokku introduces a few ways to customize the experience of deploying via `git push`. A Git-based deployment currently supports building applications via: -- [Cloud Native Buildpacks](/docs/deployment/methods/cloud-native-buildpacks.md) -- [Herokuish Buildpack](/docs/deployment/methods/herokuish-buildpacks.md) -- [Dockerfiles](/docs/deployment/methods/dockerfiles.md) +- [Cloud Native Buildpacks](/docs/deployment/builders/cloud-native-buildpacks.md) +- [Herokuish Buildpack](/docs/deployment/builders/herokuish-buildpacks.md) +- [Dockerfiles](/docs/deployment/builders/dockerfiles.md) ## Usage