Skip to content

Commit a29df62

Browse files
committed
chore(applications): create application section
1 parent 2df959a commit a29df62

8 files changed

Lines changed: 17 additions & 16 deletions

File tree

mkdocs.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,15 @@ pages:
2828
- Installing Workflow:
2929
- System Requirements: installing-workflow/system-requirements.md
3030
- Configuring Object Storage: installing-workflow/configuring-object-storage.md
31+
- Applications:
32+
- Buildpacks: applications/using-buildpacks.md
33+
- Dockerfiles: applications/using-dockerfiles.md
34+
- Docker Images: applications/using-docker-images.md
3135
- Using Workflow:
3236
- Installing the Client: using-workflow/installing-the-client.md
37+
- Process Types and the Procfile: using-workflow/process-types-and-the-procfile.md
3338
- Registering a User: using-workflow/registering-a-user.md
3439
- Deploying an Application: using-workflow/deploying-an-application.md
35-
- Process Types and the Procfile: using-workflow/process-types-and-the-procfile.md
36-
- Using Buildpacks: using-workflow/using-buildpacks.md
37-
- Using Dockerfiles: using-workflow/using-dockerfiles.md
38-
- Using Docker Images: using-workflow/using-docker-images.md
3940
- Configuring an Application: using-workflow/configuring-an-application.md
4041
- Managing an Application: using-workflow/managing-an-application.md
4142
- Application SSL Certificates: using-workflow/application-ssl-certificates.md

src/understanding-workflow/components.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,5 +150,5 @@ documentation][logger-documentation].
150150
[release]: ../reference-guide/terms.md#release
151151
[router-documentation]: https://github.com/deis/router
152152
[router]: #router
153-
[using-buildpacks]: ../using-workflow/using-buildpacks.md
154-
[using-dockerfiles]: ../using-workflow/using-dockerfiles.md
153+
[using-buildpacks]: ../applications/using-buildpacks.md
154+
[using-dockerfiles]: ../applications/using-dockerfiles.md

src/understanding-workflow/concepts.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,12 +130,12 @@ to external or third-party vendor services.
130130
[backing services]: http://12factor.net/backing-services
131131
[build]: ../reference-guide/terms.md#build
132132
[builder]: components.md#builder
133-
[buildpacks]: ../using-workflow/using-buildpacks.md
133+
[buildpacks]: ../applications/using-buildpacks.md
134134
[cncf]: https://cncf.io/
135135
[components]: components.md
136136
[config]: ../reference-guide/terms.md#config
137-
[dockerfile]: ../using-workflow/using-dockerfiles.md
138-
[dockerimage]: ../using-workflow/using-docker-images.md
137+
[dockerfile]: ../applications/using-dockerfiles.md
138+
[dockerimage]: ../applications/using-docker-images.md
139139
[environment variables]: http://12factor.net/config
140140
[helm]: https://helm.sh
141141
[release]: ../reference-guide/terms.md#release

src/using-workflow/deploying-an-application.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ Deis supports three different ways of building applications:
3434

3535
Heroku buildpacks are useful if you want to follow Heroku's best practices for building applications or if you are porting an application from Heroku.
3636

37-
Learn how to deploy applications [using Buildpacks](using-buildpacks.md).
37+
Learn how to deploy applications [using Buildpacks](../applications/using-buildpacks.md).
3838

3939

4040
### Dockerfiles
4141

4242
Dockerfiles are a powerful way to define a portable execution environment built on a base OS of your choosing.
4343

44-
Learn how to deploy applications [using Dockerfiles](using-dockerfiles.md).
44+
Learn how to deploy applications [using Dockerfiles](../applications/using-dockerfiles.md).
4545

4646

4747
### Docker Image
@@ -50,7 +50,7 @@ Deploying a Docker image onto Deis allows you to take a Docker image from either
5050
or a private registry and copy it over bit-for-bit, ensuring that you are running the same
5151
image in development or in your CI pipeline as you are in production.
5252

53-
Learn how to deploy applications [using Docker images](using-docker-images.md).
53+
Learn how to deploy applications [using Docker images](../applications/using-docker-images.md).
5454

5555
[application]: ../reference-guide/terms.md#application
5656
[controller]: ../understanding-workflow/components.md#controller

src/using-workflow/process-types-and-the-procfile.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Scaling a process type directly changes the number of [Containers][container] ru
8787

8888
When deploying to Deis Workflow using a Heroku Buildpack, Workflow boots the `web` process type to
8989
boot the application server. When you deploy an application that has a Dockerfile or uses [Docker
90-
images](using-docker-images.md), Workflow boots the `cmd` process type. Both act similarly in that
90+
images][docker image], Workflow boots the `cmd` process type. Both act similarly in that
9191
they are exposed to the router as web applications. However, the `cmd` process type is special
9292
because, if left undefined, it is equivalent to running the [container][] without any additional
9393
arguments. (i.e. The process specified by the Dockerfile or Docker image's `CMD` directive will
@@ -99,6 +99,6 @@ down the old process type and scale the new process type up.
9999

100100
[container]: ../reference-guide/terms.md#container
101101
[process model]: https://devcenter.heroku.com/articles/process-model
102-
[buildpacks]: using-buildpacks.md
103-
[dockerfile]: using-dockerfiles.md
104-
[docker image]: using-docker-images.md
102+
[buildpacks]: ../applications/using-buildpacks.md
103+
[dockerfile]: ../applications/using-dockerfiles.md
104+
[docker image]: ../applications/using-docker-images.md

0 commit comments

Comments
 (0)