mirror of https://github.com/docker/docs.git
Engdocs 1428 (#17506)
* Desktop meta descriptions * compose meta descriptions * checks
This commit is contained in:
parent
daeb2f1980
commit
0035868d2b
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Declare default environment variables in a file
|
description: Understand the accepted syntax for declaring environment variables.
|
||||||
keywords: fig, composition, compose, docker, orchestration, environment, env file
|
keywords: fig, composition, compose, docker, orchestration, environment, env file
|
||||||
title: Use an environment file
|
title: Use an environment file
|
||||||
redirect_from:
|
redirect_from:
|
||||||
|
@ -34,7 +34,7 @@ The following syntax rules apply to environment files:
|
||||||
- `VAR='some\tvalue'` -> `some\tvalue`
|
- `VAR='some\tvalue'` -> `some\tvalue`
|
||||||
- `VAR=some\tvalue` -> `some\tvalue`
|
- `VAR=some\tvalue` -> `some\tvalue`
|
||||||
|
|
||||||
### Parameter Expansion
|
### Parameter expansion
|
||||||
Compose supports parameter expansion in environment files.
|
Compose supports parameter expansion in environment files.
|
||||||
Parameter expansion is applied for unquoted and double-quoted values.
|
Parameter expansion is applied for unquoted and double-quoted values.
|
||||||
Both braced (`${VAR}`) and unbraced (`$VAR`) expressions are supported.
|
Both braced (`${VAR}`) and unbraced (`$VAR`) expressions are supported.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Environment variables precedence
|
title: Environment variables precedence
|
||||||
description: Scenario Overview illustrating how environment variables are resolved in Compose
|
description: Scenario overview illustrating how environment variables are resolved in Compose
|
||||||
keywords: compose, environment, env file
|
keywords: compose, environment, env file
|
||||||
redirect_from:
|
redirect_from:
|
||||||
- /compose/envvars-precedence/
|
- /compose/envvars-precedence/
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Docker Compose FAQ
|
description: Frequently asked questions for Docker Compose
|
||||||
keywords: documentation, docs, docker, compose, faq
|
keywords: documentation, docs, docker, compose, faq
|
||||||
title: Frequently asked questions
|
title: Frequently asked questions
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: File watch automatically updates running services as you work
|
description: Use File watch to automatically update running services as you work
|
||||||
keywords: compose, file watch, experimental
|
keywords: compose, file watch, experimental
|
||||||
title: Automatically update services with file watch
|
title: Automatically update services with file watch
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: GPU support in Compose
|
description: Understand GPU support in Docker Compose
|
||||||
keywords: documentation, docs, docker, compose, GPU access, NVIDIA, samples
|
keywords: documentation, docs, docker, compose, GPU access, NVIDIA, samples
|
||||||
title: Enabling GPU access with Compose
|
title: Enabling GPU access with Compose
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
---
|
---
|
||||||
description: How to uninstall Docker Compose
|
description: How to uninstall Docker Compose
|
||||||
keywords: compose, orchestration, uninstall, uninstallation, docker, documentation
|
keywords: compose, orchestration, uninstall, uninstallation, docker, documentation
|
||||||
|
|
||||||
title: Uninstall Docker Compose
|
title: Uninstall Docker Compose
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: How Compose sets up networking between containers
|
description: How Docker Compose sets up networking between containers
|
||||||
keywords: documentation, docs, docker, compose, orchestration, containers, networking
|
keywords: documentation, docs, docker, compose, orchestration, containers, networking
|
||||||
title: Networking in Compose
|
title: Networking in Compose
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Using profiles with Compose
|
title: Using profiles with Compose
|
||||||
desription: Using profiles with Compose
|
desription: How to use profiles with Docker Compose
|
||||||
keywords: cli, compose, profile, profiles reference
|
keywords: cli, compose, profile, profiles reference
|
||||||
---
|
---
|
||||||
{% include compose-eol.md %}
|
{% include compose-eol.md %}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
title: Using secrets in Compose
|
title: How to use secrets in Docker Compose
|
||||||
description: How to use secrets in Compose and their benefits
|
description: How to use secrets in Compose and their benefits
|
||||||
keywords: secrets, compose, security, environment variables
|
keywords: secrets, compose, security, environment variables
|
||||||
---
|
---
|
||||||
|
@ -8,8 +8,6 @@ A secret is any piece of data, such as a password, certificate, or API key, that
|
||||||
|
|
||||||
Docker Compose provides a way for you to use secrets without having to use environment variables to store information. If you’re injecting passwords and API keys as environment variables, you risk unintentional information exposure. Environment variables are often available to all processes, and it can be difficult to track access. They can also be printed in logs when debugging errors without your knowledge. Using secrets mitigates these risks.
|
Docker Compose provides a way for you to use secrets without having to use environment variables to store information. If you’re injecting passwords and API keys as environment variables, you risk unintentional information exposure. Environment variables are often available to all processes, and it can be difficult to track access. They can also be printed in logs when debugging errors without your knowledge. Using secrets mitigates these risks.
|
||||||
|
|
||||||
Secrets are also useful for locally replicating a remote development setup with Kubernetes. Using secrets makes your application scalable.
|
|
||||||
|
|
||||||
## Use secrets
|
## Use secrets
|
||||||
|
|
||||||
Getting a secret into a container is a two-step process. First, define the secret using the [top-level secrets attribute in your Compose file](compose-file/09-secrets.md). Next, update your service definitions to reference the secrets they require with the [secrets attribute](compose-file/05-services.md#secrets). Compose grants access to secrets on a per-service basis.
|
Getting a secret into a container is a two-step process. First, define the secret using the [top-level secrets attribute in your Compose file](compose-file/09-secrets.md). Next, update your service definitions to reference the secrets they require with the [secrets attribute](compose-file/05-services.md#secrets). Compose grants access to secrets on a per-service basis.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
title: Back up and restore data
|
title: How to back up and restore your Docker Desktop data
|
||||||
keywords: Docker Desktop, backup, restore, migration, reinstall, containers, images, volumes
|
keywords: Docker Desktop, backup, restore, migration, reinstall, containers, images, volumes
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: General Frequently asked questions
|
description: Frequently asked questions for all platforms
|
||||||
keywords: desktop, mac, windows, faqs
|
keywords: desktop, mac, windows, faqs
|
||||||
redirect_from:
|
redirect_from:
|
||||||
- /mackit/faqs/
|
- /mackit/faqs/
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Feedback
|
description: Find a way to provide feedback that's right for you
|
||||||
keywords: Feedback, Docker Desktop, Linux, Mac, Windows, Dev Environments, Extensions, Community forum, bugs, problems, issues
|
keywords: Feedback, Docker Desktop, Linux, Mac, Windows, Dev Environments, Extensions, Community forum, bugs, problems, issues
|
||||||
title: Give feedback
|
title: Give feedback
|
||||||
---
|
---
|
||||||
|
@ -13,7 +13,7 @@ On each Docker Dashboard view, there is a **Give feedback** link. This sends you
|
||||||
#### Feedback via Docker Community forums
|
#### Feedback via Docker Community forums
|
||||||
|
|
||||||
To get help from the community, review current user topics, join or start a
|
To get help from the community, review current user topics, join or start a
|
||||||
discussion, log on to the appropriate Docker forums:
|
discussion, sign in to the appropriate Docker forums:
|
||||||
|
|
||||||
- [Docker Desktop for Mac
|
- [Docker Desktop for Mac
|
||||||
forum](https://forums.docker.com/c/docker-for-mac){:target="_blank" rel="noopener" class="_"}
|
forum](https://forums.docker.com/c/docker-for-mac){:target="_blank" rel="noopener" class="_"}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Docker Dashboard
|
description: Explore the Learning center and understand the benefits of signing in to Docker Desktop
|
||||||
keywords: Docker Dashboard, manage, containers, gui, dashboard, images, user manual, learning center, guide, sign in
|
keywords: Docker Dashboard, manage, containers, gui, dashboard, images, user manual, learning center, guide, sign in
|
||||||
title: Learning Center and sign in
|
title: Learning Center and sign in
|
||||||
redirect_from:
|
redirect_from:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: FAQs
|
title: FAQs
|
||||||
description: FAQ for Enhanced Container Isolation
|
description: Frequently asked questions for Enhanced Container Isolation
|
||||||
keywords: enhanced container isolation, security, faq, sysbox, Docker Desktop
|
keywords: enhanced container isolation, security, faq, sysbox, Docker Desktop
|
||||||
toc_max: 2
|
toc_max: 2
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Instructions on how to set up enhanced container isolation
|
description: The benefits of enhanced container isolation
|
||||||
title: Key features and benefits
|
title: Key features and benefits
|
||||||
keywords: set up, enhanced container isolation, rootless, security, features, Docker Desktop
|
keywords: set up, enhanced container isolation, rootless, security, features, Docker Desktop
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Instructions on how to set up enhanced container isolation
|
description: How Enhanced Container Isolation works
|
||||||
title: How does it work?
|
title: How does it work?
|
||||||
keywords: set up, enhanced container isolation, rootless, security
|
keywords: set up, enhanced container isolation, rootless, security
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Hardened Docker Desktop
|
title: Hardened Docker Desktop
|
||||||
description: Overview of what Hardened Docker Desktop is
|
description: Overview of what Hardened Docker Desktop is and its key features
|
||||||
keywords: security, hardened desktop, enhanced container isolation, registry access management, settings management root access, admins, docker desktop, image access management
|
keywords: security, hardened desktop, enhanced container isolation, registry access management, settings management root access, admins, docker desktop, image access management
|
||||||
---
|
---
|
||||||
>Note
|
>Note
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Registry Access Management
|
description: What Registry Access Management is and how to use it
|
||||||
keywords: registry access managment, Hardened Docker Desktop, Docker Desktop, images, Docker Hub
|
keywords: registry access managment, Hardened Docker Desktop, Docker Desktop, images, Docker Hub
|
||||||
title: Registry Access Management
|
title: Registry Access Management
|
||||||
redirect_from:
|
redirect_from:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: settings management for desktop
|
description: How to configure Settings Management for Docker Desktop
|
||||||
keywords: admin, controls, rootless, enhanced container isolation
|
keywords: admin, controls, rootless, enhanced container isolation
|
||||||
title: Configure Settings Management
|
title: Configure Settings Management
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Settings Management for desktop
|
description: Understand how Settings Management works, who it is for, and what the benefits are
|
||||||
keywords: Settings Management, rootless, docker desktop, hardened desktop
|
keywords: Settings Management, rootless, docker desktop, hardened desktop
|
||||||
title: What is Settings Management?
|
title: What is Settings Management?
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Deploying to Kubernetes on Docker Desktop
|
description: See how you can deploy to Kubernetes on Docker Desktop
|
||||||
keywords: deploy, kubernetes, kubectl, orchestration, Docker Desktop
|
keywords: deploy, kubernetes, kubectl, orchestration, Docker Desktop
|
||||||
title: Deploy on Kubernetes
|
title: Deploy on Kubernetes
|
||||||
redirect_from:
|
redirect_from:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Permission requirements for Docker Desktop for Mac
|
description: Understand permission requirements for Docker Desktop for Mac and the differences between versions
|
||||||
keywords: Docker Desktop, mac, security, install, permissions
|
keywords: Docker Desktop, mac, security, install, permissions
|
||||||
title: Understand permission requirements for Mac
|
title: Understand permission requirements for Mac
|
||||||
redirect_from:
|
redirect_from:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Networking on Docker Desktop
|
description: Understand how networking works on Docker Desktop and see the known limitations
|
||||||
keywords: networking, docker desktop, proxy, vpn, Linux, Mac, Windows
|
keywords: networking, docker desktop, proxy, vpn, Linux, Mac, Windows
|
||||||
title: Explore networking features
|
title: Explore networking features
|
||||||
redirect_from:
|
redirect_from:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Release notes for Docker Desktop for Mac, Linux, Windows
|
description: Release notes for Docker Desktop for Mac, Linux, and Windows
|
||||||
keywords: Docker desktop, release notes, linux, mac, windows
|
keywords: Docker desktop, release notes, linux, mac, windows
|
||||||
title: Docker Desktop release notes
|
title: Docker Desktop release notes
|
||||||
toc_max: 2
|
toc_max: 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Docker Desktop settings
|
description: Change your Docker Desktop settings on Linux
|
||||||
keywords: settings, preferences, proxy, file sharing, resources, kubernetes, Docker Desktop, Linux
|
keywords: settings, preferences, proxy, file sharing, resources, kubernetes, Docker Desktop, Linux
|
||||||
title: Change on Linux
|
title: Change on Linux
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Docker Desktop settings
|
description: Change your Docker Desktop settings on Mac
|
||||||
keywords: settings, preferences, proxy, file sharing, resources, kubernetes, Docker Desktop, Mac
|
keywords: settings, preferences, proxy, file sharing, resources, kubernetes, Docker Desktop, Mac
|
||||||
title: Change preferences on Mac
|
title: Change preferences on Mac
|
||||||
redirect_from:
|
redirect_from:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Docker Desktop settings
|
description: Change your Docker Desktop settings on Windows
|
||||||
keywords: settings, preferences, proxy, file sharing, resources, kubernetes, Docker Desktop, Windows
|
keywords: settings, preferences, proxy, file sharing, resources, kubernetes, Docker Desktop, Windows
|
||||||
title: Change Docker Desktop settings on Windows
|
title: Change Docker Desktop settings on Windows
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Docker Desktop support
|
description: See what support is available for Docker Desktop
|
||||||
keywords: Support, Docker Desktop, Linux, Mac, Windows
|
keywords: Support, Docker Desktop, Linux, Mac, Windows
|
||||||
title: Get support
|
title: Get support
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Docker Dashboard
|
description: Understand what you can do with the Containers view on Docker Dashboard
|
||||||
keywords: Docker Dashboard, manage, containers, gui, dashboard, images, user manual
|
keywords: Docker Dashboard, manage, containers, gui, dashboard, images, user manual
|
||||||
title: Explore Containers
|
title: Explore Containers
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Docker Dashboard
|
description: Understand what you can do with the Images view on Docker Dashboard
|
||||||
keywords: Docker Dashboard, manage, containers, gui, dashboard, images, user manual
|
keywords: Docker Dashboard, manage, containers, gui, dashboard, images, user manual
|
||||||
title: Explore Images
|
title: Explore Images
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Docker Dashboard
|
description: Understand what you can do with Docker Dashboard
|
||||||
keywords: Docker Dashboard, manage, containers, gui, dashboard, images, user manual, whale menu
|
keywords: Docker Dashboard, manage, containers, gui, dashboard, images, user manual, whale menu
|
||||||
title: Overview
|
title: Overview
|
||||||
redirect_from:
|
redirect_from:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Pause Docker Dashboard
|
description: understand what pausing Docker Dashboard means
|
||||||
keywords: Docker Dashboard, manage, containers, gui, dashboard, pause, user manual
|
keywords: Docker Dashboard, manage, containers, gui, dashboard, pause, user manual
|
||||||
title: Pause Docker Desktop
|
title: Pause Docker Desktop
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Docker Dashboard
|
description: Understand what you can do with the Volumes view on Docker Dashboard
|
||||||
keywords: Docker Dashboard, manage, containers, gui, dashboard, volumes, user manual
|
keywords: Docker Dashboard, manage, containers, gui, dashboard, volumes, user manual
|
||||||
title: Explore Volumes
|
title: Explore Volumes
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
description: Permission requirements for Docker Desktop for Windows
|
description: Understand permission requirements for Docker Desktop for Windows
|
||||||
keywords: Docker Desktop, Windows, security, install
|
keywords: Docker Desktop, Windows, security, install
|
||||||
title: Understand permission requirements for Windows
|
title: Understand permission requirements for Windows
|
||||||
redirect_from:
|
redirect_from:
|
||||||
|
|
Loading…
Reference in New Issue