Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ankitsumitg/docker-fish-completions
Docker command completion for the fish shell.
https://github.com/ankitsumitg/docker-fish-completions
completions docker fish fish-plugin fish-shell fisher
Last synced: 4 months ago
JSON representation
Docker command completion for the fish shell.
- Host: GitHub
- URL: https://github.com/ankitsumitg/docker-fish-completions
- Owner: ankitsumitg
- Created: 2022-07-03T14:42:44.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-26T14:39:19.000Z (almost 2 years ago)
- Last Synced: 2023-03-08T17:47:31.185Z (almost 2 years ago)
- Topics: completions, docker, fish, fish-plugin, fish-shell, fisher
- Language: Shell
- Homepage:
- Size: 34.2 KB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🐳 Docker Fish completions
`docker` command completions for [Fish](https://fishshell.com/).
Always in sync with official [docker/cli/contrib/completion/fish/docker.fish](https://github.com/docker/cli/blob/master/contrib/completion/fish/docker.fish).
- Fish = awesome
- docker = awesome
- completions = awesome²## Installation
Install with [Fisher](https://github.com/jorgebucaran/fisher):
```console
fisher install ankitsumitg/docker-fish-completions
```Or manually:
```console
mkdir ~/.config/fish/completions
wget https://raw.githubusercontent.com/ankitsumitg/docker-fish-completions/main/completions/docker.fish -O ~/.config/fish/completions/docker.fish
```Fish will load the new completions straight away—no reload required.
## Example
```console
% docker run -[TAB] 🥊
--attach (Attach to stdin, stdout or stderr.)
...% docker run -t -i [TAB] 🥊
ubuntu:20.04 (Image)% docker run -t -i ubuntu:20.04
/ #
```## Completion supported
- parameters
- commands
- containers
- images
- repositories## Contributors