From b0dc4ed53b0d6b804bcb989a630a2fbbf06121df Mon Sep 17 00:00:00 2001 From: aevesdocker Date: Tue, 6 Jan 2026 09:16:35 +0000 Subject: [PATCH] ENGDOCS-3133 --- content/manuals/compose/gettingstarted.md | 3 ++ .../manuals/compose/how-tos/project-name.md | 2 +- .../intro/compose-application-model.md | 2 +- .../samples-for-compose.md | 28 ------------------- 4 files changed, 5 insertions(+), 30 deletions(-) delete mode 100644 content/manuals/compose/support-and-feedback/samples-for-compose.md diff --git a/content/manuals/compose/gettingstarted.md b/content/manuals/compose/gettingstarted.md index dcbfd3fd5c1b..2fb54fde0dbc 100644 --- a/content/manuals/compose/gettingstarted.md +++ b/content/manuals/compose/gettingstarted.md @@ -8,6 +8,9 @@ keywords: docker compose example, docker compose tutorial, how to use docker com title: Docker Compose Quickstart linkTitle: Quickstart weight: 30 +aliases: +- /compose/samples-for-compose/ +- /compose/support-and-feedback/samples-for-compose/ --- This tutorial aims to introduce fundamental concepts of Docker Compose by guiding you through the development of a basic Python web application. diff --git a/content/manuals/compose/how-tos/project-name.md b/content/manuals/compose/how-tos/project-name.md index 37aabdcaa5bd..36053a0b0709 100644 --- a/content/manuals/compose/how-tos/project-name.md +++ b/content/manuals/compose/how-tos/project-name.md @@ -42,4 +42,4 @@ The precedence order for each method, from highest to lowest, is as follows: ## What's next? - Read up on [working with multiple Compose files](multiple-compose-files/_index.md). -- Explore some [sample apps](samples-for-compose.md). +- Explore some [sample apps](https://github.com/docker/awesome-compose). diff --git a/content/manuals/compose/intro/compose-application-model.md b/content/manuals/compose/intro/compose-application-model.md index 94422bb299f8..0386c2e27050 100644 --- a/content/manuals/compose/intro/compose-application-model.md +++ b/content/manuals/compose/intro/compose-application-model.md @@ -165,5 +165,5 @@ example-backend-1 example/database "docker-entrypoint.s…" backend ## What's next - [Try the Quickstart guide](/manuals/compose/gettingstarted.md) -- [Explore some sample applications](/manuals/compose/support-and-feedback/samples-for-compose.md) +- [Explore some sample applications](https://github.com/docker/awesome-compose) - [Familiarize yourself with the Compose Specification](/reference/compose-file/_index.md) diff --git a/content/manuals/compose/support-and-feedback/samples-for-compose.md b/content/manuals/compose/support-and-feedback/samples-for-compose.md deleted file mode 100644 index cbeb84380e40..000000000000 --- a/content/manuals/compose/support-and-feedback/samples-for-compose.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -description: Summary of samples related to Compose -keywords: documentation, docs, docker, compose, samples -title: Sample apps with Compose -linkTitle: Sample apps -weight: 30 -aliases: -- /compose/samples-for-compose/ ---- - -The following samples show the various aspects of how to work with Docker -Compose. As a prerequisite, be sure to [install Docker Compose](/manuals/compose/install/_index.md) -if you have not already done so. - -## Key concepts these samples cover - -The samples should help you to: - -- Define services based on Docker images using - [Compose files](/reference/compose-file/_index.md) -- Understand the relationship between `compose.yaml` and - [Dockerfiles](/reference/dockerfile/) -- Learn how to make calls to your application services from Compose files -- Learn how to deploy applications and services to a [swarm](/manuals/engine/swarm/_index.md) - -## Awesome Compose samples - -The Awesome Compose samples provide a starting point on how to integrate different frameworks and technologies using Docker Compose. All samples are available in the [Awesome-compose GitHub repo](https://github.com/docker/awesome-compose) and are ready to run with `docker compose up`.