목차

, , ,

Docker Plugin

Docker Engine plugin 설치, 활성화, 설정 변경을 다루는 docker plugin 관리 그룹.

Summary

Usage

docker plugin COMMAND

Command Groups

Examples

# plugin 목록
docker plugin ls
 
# plugin 설치
docker plugin install vieux/sshfs --grant-all-permissions
 
# 설정 변경 후 활성화
docker plugin set vieux/sshfs DEBUG=1
docker plugin enable vieux/sshfs

Troubleshooting

Help

+ docker plugin --help

Usage:  docker plugin COMMAND
 
Manage plugins
 
Commands:
  create      Create a plugin from a rootfs and configuration. Plugin data directory must contain config.json and rootfs directory.
  disable     Disable a plugin
  enable      Enable a plugin
  inspect     Display detailed information on one or more plugins
  install     Install a plugin
  ls          List plugins
  push        Push a plugin to a registry
  rm          Remove one or more plugins
  set         Change settings for a plugin
  upgrade     Upgrade an existing plugin
 
Run 'docker plugin COMMAND --help' for more information on a command.

+

See Also

History