Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix summaries for "custom env" page and add link to podman from main … #684

Merged
merged 1 commit into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions content/docs/app-journey.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ getting-started=true

In this tutorial, we'll explain how to use `pack` and **buildpacks** to create a runnable app image from source code.

In order to run the build process in an isolated fashion, `pack` uses **Docker**. That means you'll need to make sure you have both `docker` and `pack` installed:

{{< download-button href="https://store.docker.com/search?type=edition&offering=community" color="blue" >}} Install Docker {{</>}}
In order to run the build process in an isolated fashion, `pack` uses **Docker** or a Docker-compatible daemon to create the containers where buildpacks execute.
That means you'll need to make sure you have both `pack` and a daemon installed:

{{< download-button href="/docs/install-pack" color="pink" >}} Install pack {{</>}}

{{< download-button href="https://store.docker.com/search?type=edition&offering=community" color="blue" >}} Install Docker {{</>}} or alternatively, see [this page](/docs/for-app-developers/how-to/special-cases/build-on-podman) about working with `podman`.

> **NOTE:** `pack` is only one implementation of the [Cloud Native Buildpacks Platform Specification][cnb-platform-spec]. Additionally, not all Cloud Native Buildpacks Platforms require Docker.

[cnb-platform-spec]: https://github.com/buildpacks/spec/blob/main/platform.md
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
+++
title="Build in custom environments"
weight=3

include_summaries=true
+++
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ aliases=[
weight=2
+++

You can use buildpacks to build container images that run Windows containers on Windows (WCOW).

This page is not relevant if your host machine is Windows but you are running Linux containers on Windows (LCOW);
in this case, no special configuration is required.

<!--more-->

> **EXPERIMENTAL** Windows support is experimental!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ aliases=[
"/docs/features/experimental/export-to-oci-layout"
]
weight=3
summary="The OCI Image Layout is the directory structure for OCI content-addressable blobs and location-addressable references."
+++

<!--more-->
Expand Down
Loading