mirror of https://github.com/docker/docs.git
fixed link in Compose file, expanded on-page TOC's to show more subtopics
fixed a link to variable substition in Compose v.3 Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
This commit is contained in:
parent
3ad5c38a77
commit
f36ad2fa3a
|
@ -4,6 +4,8 @@ keywords: fig, composition, compose version 1, docker
|
|||
redirect_from:
|
||||
- /compose/yml
|
||||
title: Compose file version 1 reference
|
||||
toc_max: 4
|
||||
toc_min: 1
|
||||
---
|
||||
|
||||
These topics describe version 1 of the Compose file format. This is the oldest
|
||||
|
|
|
@ -4,6 +4,8 @@ keywords: fig, composition, compose version 3, docker
|
|||
redirect_from:
|
||||
- /compose/yml
|
||||
title: Compose file version 2 reference
|
||||
toc_max: 4
|
||||
toc_min: 1
|
||||
---
|
||||
|
||||
These topics describe version 2 of the Compose file format.
|
||||
|
|
|
@ -5,6 +5,8 @@ redirect_from:
|
|||
- /compose/yml
|
||||
- /compose/compose-file-v3.md
|
||||
title: Compose file version 3 reference
|
||||
toc_max: 4
|
||||
toc_min: 1
|
||||
---
|
||||
|
||||
These topics describe version 3 of the Compose file format. This is the newest
|
||||
|
@ -34,8 +36,8 @@ As with `docker run`, options specified in the Dockerfile (e.g., `CMD`,
|
|||
specify them again in `docker-compose.yml`.
|
||||
|
||||
You can use environment variables in configuration values with a Bash-like
|
||||
`${VARIABLE}` syntax - see [variable
|
||||
substitution](compose-file.md#variable-substitution) for full details.
|
||||
`${VARIABLE}` syntax - see
|
||||
[variable substitution](#variable-substitution) for full details.
|
||||
|
||||
This section contains a list of all configuration options supported by a service
|
||||
definition in version 3.
|
||||
|
@ -263,7 +265,7 @@ resources:
|
|||
#### restart_policy
|
||||
|
||||
Configures if and how to restart containers when they exit. Replaces
|
||||
[`restart`](compose-file.md#restart).
|
||||
[`restart`](compose-file-v2.md#cpushares-cpuquota-cpuset-domainname-hostname-ipc-macaddress-memlimit-memswaplimit-oomscoreadj-privileged-readonly-restart-shmsize-stdinopen-tty-user-workingdir).
|
||||
|
||||
- `condition`: One of `none`, `on-failure` or `any` (default: `any`).
|
||||
- `delay`: How long to wait between restart attempts, specified as a
|
||||
|
|
Loading…
Reference in New Issue