Skip to content

Commit 46953bb

Browse files
committed
fix build
1 parent 30a443e commit 46953bb

File tree

4 files changed

+7
-18
lines changed

4 files changed

+7
-18
lines changed

content/manuals/compose/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ grid:
3535
icon: polyline
3636
link: /reference/compose-file
3737
- title: Use Compose Bridge
38-
description: transform your Compose configuration file into configuration files for different platforms, such as Kubernetes.
38+
description: Transform your Compose configuration file into configuration files for different platforms, such as Kubernetes.
3939
icon: move_down
40-
link: /compose/bridge/_index.md
40+
link: /compose/bridge
4141
- title: Browse common FAQs
4242
description: Explore general FAQs and find out how to give feedback.
4343
icon: help

content/manuals/compose/install/linux.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,5 +112,5 @@ To update the Docker Compose plugin, run the following commands:
112112

113113
## What's next?
114114

115-
- [Understand how Compose works](compose-application-model.md)
116-
- [Try the Quickstart guide](../gettingstarted.md)
115+
- [Understand how Compose works](/manuals/compose/intro/compose-application-model.md)
116+
- [Try the Quickstart guide](/manuals/compose/gettingstarted.md)

content/manuals/compose/install/standalone.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,5 @@ on Microsoft Windows Server](/manuals/engine/install/binaries.md#install-server-
7878
7979
## What's next?
8080
81-
- [Understand how Compose works](compose-application-model.md)
82-
- [Try the Quickstart guide](../gettingstarted.md)
81+
- [Understand how Compose works](/manuals/compose/intro/compose-application-model.md)
82+
- [Try the Quickstart guide](/manuals/compose/gettingstarted.md)

content/manuals/compose/intro/compose-application-model.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
2-
title: How Compose works
3-
linkTitle: "How Docker Compose Works:" Model, File, and CLI
2+
titleTitle: How Compose works
43
weight: 10
54
description: Learn how Docker Compose works, from the application model to Compose files and CLI, whilst following a detailed example.
65
keywords: docker compose, compose.yaml, docker compose model, compose cli, multi-container application, compose example
@@ -16,24 +15,14 @@ The Compose file, or `compose.yaml` file, follows the rules provided by the [Com
1615

1716
{{< accordion title="The Compose application model" >}}
1817

19-
#### Services
20-
2118
Computing components of an application are defined as [services](/reference/compose-file/services.md). A service is an abstract concept implemented on platforms by running the same container image, and configuration, one or more times.
2219

23-
#### Networks
24-
2520
Services communicate with each other through [networks](/reference/compose-file/networks.md). In the Compose Specification, a network is a platform capability abstraction to establish an IP route between containers within services connected together.
2621

27-
#### Volumes
28-
2922
Services store and share persistent data into [volumes](/reference/compose-file/volumes.md). The Specification describes such a persistent data as a high-level filesystem mount with global options.
3023

31-
#### Configs
32-
3324
Some services require configuration data that is dependent on the runtime or platform. For this, the Specification defines a dedicated [configs](/reference/compose-file/configs.md) concept. From inside the container, configs behave like volumes—they’re mounted as files. However, configs are defined differently at the platform level.
3425

35-
#### Secrets
36-
3726
A [secret](/reference/compose-file/secrets.md) is a specific flavor of configuration data for sensitive data that should not be exposed without security considerations. Secrets are made available to services as files mounted into their containers, but the platform-specific resources to provide sensitive data are specific enough to deserve a distinct concept and definition within the Compose Specification.
3827

3928
> [!NOTE]

0 commit comments

Comments
 (0)