Estimated reading time: 3 minutes
需安装 Docker Desktop 的 Mac 或者 Windows 版本,如果没有请下载下载 Docker CE最新版本 当前 master 分支已经在 Docker for Mac/Windows 2.5.0.0 (包含 Docker CE 20.10.0 和 Kubernetes 1.19.3) 版本测试通过. Give feedback and get help. To get help from the community, review current user topics, join or start a discussion, log on to our Docker Desktop for Mac forum. To report bugs or problems, log on to Docker Desktop for Mac issues on GitHub, where you can review community reported issues, and file new ones. Docker Desktop for Windows. 原文 、ウェブ版原文 2020年6月4日現在の情報です。 Windows 10 Pro で Docker Desktop をセットアップする手順については、別途記事をまとめ ています。.
Compose comes with command completionfor the bash and zsh shell. Prime video download for macbook pro.
Install command completion
Docker Desktop Brewing
Bash
Make sure bash completion is installed.
Linux
On a current Linux OS (in a non-minimal installation), bash completion should beavailable.
Place the completion script in
/etc/bash_completion.d/
.Reload your terminal. You can close and then open a new terminal, or reload your setting with
source ~/.bashrc
command in your current terminal.
Mac
Install via Homebrew
- Install with
brew install bash-completion
. After the installation, Brew displays the installation path. Make sure to place the completion script in the path.
For example, place the completion script in
/usr/local/etc/bash_completion.d/
.Add the following to your
~/.bash_profile
:A sandboxed local environment that replicates the live AWS Lambda environment almost identically – including installed software and libraries, file structure and permissions, environment variables, context objects and behaviors – even the user and running process are the same. Leverage with confidence Docker certified and official images from the Docker Hub image repository. Use these trusted and secure images as the foundation for your application development. Innovate by collaborating with team members and other developers and by easily publishing images to Docker Hub. Docker yum repository list. Amazon Linux provides a stable, secure, and high-performance execution environment for applications.
- You can source your
~/.bash_profile
or launch a new terminal to utilizecompletion.
Docker Desktop Brewers
Install via MacPorts
Run
sudo port install bash-completion
to install bash completion.Add the following lines to
~/.bash_profile
:You can source your
~/.bash_profile
or launch a new terminal to utilizecompletion.
Zsh
Make sure you have installed oh-my-zsh
on your computer.
With oh-my-zsh shell
Add docker
and docker-compose
to the plugins list in ~/.zshrc
to runautocompletion within the oh-my-zsh shell. In the following example, ..
represent other Zsh plugins you may have installed.
Without oh-my-zsh shell
Place the completion script in your
/path/to/zsh/completion
(typically~/.zsh/completion/
):Include the directory in your
$fpath
by adding in~/.zshrc
:Make sure
compinit
is loaded or do it by adding in~/.zshrc
:Then reload your shell:
Available completions
Depending on what you typed on the command line so far, it completes:
- available docker-compose commands
- options that are available for a particular command
- service names that make sense in a given context, such as services with running or stopped instances or services based on images vs. services based on Dockerfiles. For
docker-compose scale
, completed service names automatically have “=” appended. - arguments for selected options. For example,
docker-compose kill -s
completes some signals like SIGHUP and SIGUSR1.
Enjoy working with Compose faster and with fewer typos!