_docker-compose 17.8 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#compdef docker-compose

# Description
# -----------
#  zsh completion for docker-compose
# -------------------------------------------------------------------------
# Authors
# -------
#  * Steve Durrheimer <s.durrheimer@gmail.com>
# -------------------------------------------------------------------------
# Inspiration
# -----------
#  * @albers docker-compose bash completion script
#  * @felixr docker zsh completion script : https://github.com/felixr/docker-zsh-completion
# -------------------------------------------------------------------------

17
18
__docker-compose_q() {
    docker-compose 2>/dev/null $compose_options "$@"
19
20
}

21
22
# All services defined in docker-compose.yml
__docker-compose_all_services_in_compose_file() {
23
24
    local already_selected
    local -a services
25
    already_selected=$(echo $words | tr " " "|")
26
    __docker-compose_q ps --services "$@" \
27
        | grep -Ev "^(${already_selected})$"
28
29
30
31
}

# All services, even those without an existing container
__docker-compose_services_all() {
32
33
    [[ $PREFIX = -* ]] && return 1
    integer ret=1
34
    services=$(__docker-compose_all_services_in_compose_file "$@")
35
36
37
    _alternative "args:services:($services)" && ret=0

    return ret
38
39
40
41
}

# All services that are defined by a Dockerfile reference
__docker-compose_services_from_build() {
42
    [[ $PREFIX = -* ]] && return 1
43
    __docker-compose_services_all --filter source=build
44
45
46
47
}

# All services that are defined by an image
__docker-compose_services_from_image() {
48
    [[ $PREFIX = -* ]] && return 1
49
    __docker-compose_services_all --filter source=image
50
51
52
53
}

__docker-compose_pausedservices() {
    [[ $PREFIX = -* ]] && return 1
54
    __docker-compose_services_all --filter status=paused
55
56
57
}

__docker-compose_stoppedservices() {
58
    [[ $PREFIX = -* ]] && return 1
59
    __docker-compose_services_all --filter status=stopped
60
61
62
}

__docker-compose_runningservices() {
63
    [[ $PREFIX = -* ]] && return 1
64
    __docker-compose_services_all --filter status=running
65
66
}

67
68
__docker-compose_services() {
    [[ $PREFIX = -* ]] && return 1
69
    __docker-compose_services_all
70
71
72
}

__docker-compose_caching_policy() {
73
    oldp=( "$1"(Nmh+1) )            # 1 hour
74
75
76
    (( $#oldp ))
}

77
__docker-compose_commands() {
78
79
80
81
82
83
84
85
86
87
88
89
90
    local cache_policy

    zstyle -s ":completion:${curcontext}:" cache-policy cache_policy
    if [[ -z "$cache_policy" ]]; then
        zstyle ":completion:${curcontext}:" cache-policy __docker-compose_caching_policy
    fi

    if ( [[ ${+_docker_compose_subcommands} -eq 0 ]] || _cache_invalid docker_compose_subcommands) \
        && ! _retrieve_cache docker_compose_subcommands;
    then
        local -a lines
        lines=(${(f)"$(_call_program commands docker-compose 2>&1)"})
        _docker_compose_subcommands=(${${${lines[$((${lines[(i)Commands:]} + 1)),${lines[(I)  *]}]}## #}/ ##/:})
91
        (( $#_docker_compose_subcommands > 0 )) && _store_cache docker_compose_subcommands _docker_compose_subcommands
92
93
94
95
    fi
    _describe -t docker-compose-commands "docker-compose command" _docker_compose_subcommands
}

96
97
98
99
100
101
102
103
104
105
106
107
__docker-compose_subcommand() {
    local opts_help opts_force_recreate opts_no_recreate opts_no_build opts_remove_orphans opts_timeout opts_no_color opts_no_deps

    opts_help='(: -)--help[Print usage]'
    opts_force_recreate="(--no-recreate)--force-recreate[Recreate containers even if their configuration and image haven't changed. Incompatible with --no-recreate.]"
    opts_no_recreate="(--force-recreate)--no-recreate[If containers already exist, don't recreate them. Incompatible with --force-recreate.]"
    opts_no_build="(--build)--no-build[Don't build an image, even if it's missing.]"
    opts_remove_orphans="--remove-orphans[Remove containers for services not defined in the Compose file]"
    opts_timeout=('(-t --timeout)'{-t,--timeout}"[Specify a shutdown timeout in seconds. (default: 10)]:seconds: ")
    opts_no_color='--no-color[Produce monochrome output.]'
    opts_no_deps="--no-deps[Don't start linked services.]"

108
    integer ret=1
109

110
111
112
    case "$words[1]" in
        (build)
            _arguments \
113
                $opts_help \
114
                "*--build-arg=[Set build-time variables for one service.]:<varname>=<value>: " \
115
                '--force-rm[Always remove intermediate containers.]' \
116
117
                '(--quiet -q)'{--quiet,-q}'[Curb build output]' \
                '(--memory -m)'{--memory,-m}'[Memory limit for the build container.]' \
118
119
                '--no-cache[Do not use cache when building the image.]' \
                '--pull[Always attempt to pull a newer version of the image.]' \
120
121
                '--compress[Compress the build context using gzip.]' \
                '--parallel[Build images in parallel.]' \
122
123
                '*:services:__docker-compose_services_from_build' && ret=0
            ;;
124
125
126
        (bundle)
            _arguments \
                $opts_help \
127
                '--push-images[Automatically push images for any services which have a `build` option specified.]' \
128
129
130
131
132
133
                '(--output -o)'{--output,-o}'[Path to write the bundle file to. Defaults to "<project name>.dab".]:file:_files' && ret=0
            ;;
        (config)
            _arguments \
                $opts_help \
                '(--quiet -q)'{--quiet,-q}"[Only validate the configuration, don't print anything.]" \
134
135
                '--resolve-image-digests[Pin image tags to digests.]' \
                '--services[Print the service names, one per line.]' \
136
137
                '--volumes[Print the volume names, one per line.]' \
                '--hash[Print the service config hash, one per line. Set "service1,service2" for a list of specified services.]' \ && ret=0
138
139
140
141
142
143
144
145
            ;;
        (create)
            _arguments \
                $opts_help \
                $opts_force_recreate \
                $opts_no_recreate \
                $opts_no_build \
                "(--no-build)--build[Build images before creating containers.]" \
146
                '*:services:__docker-compose_services' && ret=0
147
148
149
150
            ;;
        (down)
            _arguments \
                $opts_help \
151
                $opts_timeout \
152
153
154
155
156
157
158
159
                "--rmi[Remove images. Type must be one of: 'all': Remove all images used by any service. 'local': Remove only images that don't have a custom tag set by the \`image\` field.]:type:(all local)" \
                '(-v --volumes)'{-v,--volumes}"[Remove named volumes declared in the \`volumes\` section of the Compose file and anonymous volumes attached to containers.]" \
                $opts_remove_orphans && ret=0
            ;;
        (events)
            _arguments \
                $opts_help \
                '--json[Output events as a stream of json objects]' \
160
                '*:services:__docker-compose_services' && ret=0
161
162
163
164
165
166
            ;;
        (exec)
            _arguments \
                $opts_help \
                '-d[Detached mode: Run command in the background.]' \
                '--privileged[Give extended privileges to the process.]' \
167
                '(-u --user)'{-u,--user=}'[Run the command as this user.]:username:_users' \
168
169
                '-T[Disable pseudo-tty allocation. By default `docker-compose exec` allocates a TTY.]' \
                '--index=[Index of the container if there are multiple instances of a service \[default: 1\]]:index: ' \
170
171
                '*'{-e,--env}'[KEY=VAL Set an environment variable (can be used multiple times)]:environment variable KEY=VAL: ' \
                '(-w --workdir)'{-w,--workdir=}'[Working directory inside the container]:workdir: ' \
172
173
174
175
                '(-):running services:__docker-compose_runningservices' \
                '(-):command: _command_names -e' \
                '*::arguments: _normal' && ret=0
            ;;
176
177
178
        (help)
            _arguments ':subcommand:__docker-compose_commands' && ret=0
            ;;
179
180
181
182
183
184
    (images)
        _arguments \
        $opts_help \
        '-q[Only display IDs]' \
        '*:services:__docker-compose_services' && ret=0
        ;;
185
186
        (kill)
            _arguments \
187
                $opts_help \
188
189
190
191
192
                '-s[SIGNAL to send to the container. Default signal is SIGKILL.]:signal:_signals' \
                '*:running services:__docker-compose_runningservices' && ret=0
            ;;
        (logs)
            _arguments \
193
194
195
196
197
                $opts_help \
                '(-f --follow)'{-f,--follow}'[Follow log output]' \
                $opts_no_color \
                '--tail=[Number of lines to show from the end of the logs for each container.]:number of lines: ' \
                '(-t --timestamps)'{-t,--timestamps}'[Show timestamps]' \
198
                '*:services:__docker-compose_services' && ret=0
199
            ;;
200
        (pause)
201
            _arguments \
202
203
                $opts_help \
                '*:running services:__docker-compose_runningservices' && ret=0
204
205
206
            ;;
        (port)
            _arguments \
207
208
209
                $opts_help \
                '--protocol=[tcp or udp \[default: tcp\]]:protocol:(tcp udp)' \
                '--index=[index of the container if there are multiple instances of a service \[default: 1\]]:index: ' \
210
211
212
213
214
                '1:running services:__docker-compose_runningservices' \
                '2:port:_ports' && ret=0
            ;;
        (ps)
            _arguments \
215
                $opts_help \
216
                '-q[Only display IDs]' \
217
218
                '--filter KEY=VAL[Filter services by a property]:<filtername>=<value>:' \
                '*:services:__docker-compose_services' && ret=0
219
220
221
            ;;
        (pull)
            _arguments \
222
223
                $opts_help \
                '--ignore-pull-failures[Pull what it can and ignores images with pull failures.]' \
224
225
226
                '--no-parallel[Disable parallel pulling]' \
                '(-q --quiet)'{-q,--quiet}'[Pull without printing progress information]' \
                '--include-deps[Also pull services declared as dependencies]' \
227
228
                '*:services:__docker-compose_services_from_image' && ret=0
            ;;
229
230
231
232
233
234
        (push)
            _arguments \
                $opts_help \
                '--ignore-push-failures[Push what it can and ignores images with push failures.]' \
                '*:services:__docker-compose_services' && ret=0
            ;;
235
236
        (rm)
            _arguments \
237
                $opts_help \
238
                '(-f --force)'{-f,--force}"[Don't ask to confirm removal]" \
239
                '-v[Remove any anonymous volumes attached to containers]' \
240
241
242
243
                '*:stopped services:__docker-compose_stoppedservices' && ret=0
            ;;
        (run)
            _arguments \
244
                $opts_help \
245
                $opts_no_deps \
246
247
                '-d[Detached mode: Run container in the background, print new container name.]' \
                '*-e[KEY=VAL Set an environment variable (can be used multiple times)]:environment variable KEY=VAL: ' \
248
                '*'{-l,--label}'[KEY=VAL Add or override a label (can be used multiple times)]:label KEY=VAL: ' \
249
250
251
                '--entrypoint[Overwrite the entrypoint of the image.]:entry point: ' \
                '--name=[Assign a name to the container]:name: ' \
                '(-p --publish)'{-p,--publish=}"[Publish a container's port(s) to the host]" \
252
253
254
                '--rm[Remove container after run. Ignored in detached mode.]' \
                "--service-ports[Run command with the service's ports enabled and mapped to the host.]" \
                '-T[Disable pseudo-tty allocation. By default `docker-compose run` allocates a TTY.]' \
255
                '(-u --user)'{-u,--user=}'[Run as specified username or uid]:username or uid:_users' \
256
                '(-v --volume)*'{-v,--volume=}'[Bind mount a volume]:volume: ' \
257
                '(-w --workdir)'{-w,--workdir=}'[Working directory inside the container]:workdir: ' \
258
                "--use-aliases[Use the services network aliases in the network(s) the container connects to]" \
259
260
261
262
263
                '(-):services:__docker-compose_services' \
                '(-):command: _command_names -e' \
                '*::arguments: _normal' && ret=0
            ;;
        (scale)
264
265
266
267
            _arguments \
                $opts_help \
                $opts_timeout \
                '*:running services:__docker-compose_runningservices' && ret=0
268
269
            ;;
        (start)
270
271
272
            _arguments \
                $opts_help \
                '*:stopped services:__docker-compose_stoppedservices' && ret=0
273
274
275
            ;;
        (stop|restart)
            _arguments \
276
277
                $opts_help \
                $opts_timeout \
278
279
                '*:running services:__docker-compose_runningservices' && ret=0
            ;;
280
281
282
283
284
        (top)
            _arguments \
                $opts_help \
                '*:running services:__docker-compose_runningservices' && ret=0
            ;;
285
286
287
288
289
        (unpause)
            _arguments \
                $opts_help \
                '*:paused services:__docker-compose_pausedservices' && ret=0
            ;;
290
291
        (up)
            _arguments \
292
293
294
295
296
297
298
299
300
301
                $opts_help \
                '(--abort-on-container-exit)-d[Detached mode: Run containers in the background, print new container names. Incompatible with --abort-on-container-exit.]' \
                $opts_no_color \
                $opts_no_deps \
                $opts_force_recreate \
                $opts_no_recreate \
                $opts_no_build \
                "(--no-build)--build[Build images before starting containers.]" \
                "(-d)--abort-on-container-exit[Stops all containers if any container was stopped. Incompatible with -d.]" \
                '(-t --timeout)'{-t,--timeout}"[Use this timeout in seconds for container shutdown when attached or when containers are already running. (default: 10)]:seconds: " \
302
303
                '--scale[SERVICE=NUM Scale SERVICE to NUM instances. Overrides the `scale` setting in the Compose file if present.]:service scale SERVICE=NUM: ' \
                '--exit-code-from=[Return the exit code of the selected service container. Implies --abort-on-container-exit]:service:__docker-compose_services' \
304
                $opts_remove_orphans \
305
                '*:services:__docker-compose_services' && ret=0
306
307
308
            ;;
        (version)
            _arguments \
309
                $opts_help \
310
311
312
                "--short[Shows only Compose's version number.]" && ret=0
            ;;
        (*)
313
314
            _message 'Unknown sub command' && ret=1
            ;;
315
316
317
318
319
    esac

    return ret
}

320
_docker-compose() {
321
322
323
324
325
326
327
    # Support for subservices, which allows for `compdef _docker docker-shell=_docker_containers`.
    # Based on /usr/share/zsh/functions/Completion/Unix/_git without support for `ret`.
    if [[ $service != docker-compose ]]; then
        _call_function - _$service
        return
    fi

328
329
    local curcontext="$curcontext" state line
    integer ret=1
330
331
    typeset -A opt_args

332
333
334
335
336
337
338
339
    local file_description

    if [[ -n ${words[(r)-f]} || -n ${words[(r)--file]} ]] ; then
        file_description="Specify an override docker-compose file (default: docker-compose.override.yml)"
    else
        file_description="Specify an alternate docker-compose file (default: docker-compose.yml)"
    fi

340
341
    _arguments -C \
        '(- :)'{-h,--help}'[Get help]' \
342
        '*'{-f,--file}"[${file_description}]:file:_files -g '*.yml'" \
343
        '(-p --project-name)'{-p,--project-name}'[Specify an alternate project name (default: directory name)]:project name:' \
344
        "--compatibility[If set, Compose will attempt to convert keys in v3 files to their non-Swarm equivalent]" \
345
        '(- :)'{-v,--version}'[Print version and exit]' \
346
347
348
        '--verbose[Show more output]' \
        '--log-level=[Set log level]:level:(DEBUG INFO WARNING ERROR CRITICAL)' \
        '--no-ansi[Do not print ANSI control characters]' \
349
350
351
352
353
354
355
        '(-H --host)'{-H,--host}'[Daemon socket to connect to]:host:' \
        '--tls[Use TLS; implied by --tlsverify]' \
        '--tlscacert=[Trust certs signed only by this CA]:ca path:' \
        '--tlscert=[Path to TLS certificate file]:client cert path:' \
        '--tlskey=[Path to TLS key file]:tls key path:' \
        '--tlsverify[Use TLS and verify the remote]' \
        "--skip-hostname-check[Don't check the daemon's hostname against the name specified in the client certificate (for example if your docker host is an IP address)]" \
356
357
358
        '(-): :->command' \
        '(-)*:: :->option-or-argument' && ret=0

359
    local -a relevant_compose_flags relevant_compose_repeatable_flags relevant_docker_flags compose_options docker_options
360
361
362
363
364
365
366
367
368
369
370
371
372

    relevant_compose_flags=(
        "--file" "-f"
        "--host" "-H"
        "--project-name" "-p"
        "--tls"
        "--tlscacert"
        "--tlscert"
        "--tlskey"
        "--tlsverify"
        "--skip-hostname-check"
    )

373
374
375
376
    relevant_compose_repeatable_flags=(
        "--file" "-f"
    )

377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
    relevant_docker_flags=(
        "--host" "-H"
        "--tls"
        "--tlscacert"
        "--tlscert"
        "--tlskey"
        "--tlsverify"
    )

    for k in "${(@k)opt_args}"; do
        if [[ -n "${relevant_docker_flags[(r)$k]}" ]]; then
            docker_options+=$k
            if [[ -n "$opt_args[$k]" ]]; then
                docker_options+=$opt_args[$k]
            fi
        fi
        if [[ -n "${relevant_compose_flags[(r)$k]}" ]]; then
394
395
396
397
398
399
400
401
402
403
404
405
            if [[ -n "${relevant_compose_repeatable_flags[(r)$k]}"  ]]; then
                values=("${(@s/:/)opt_args[$k]}")
                for value in $values
                do
                    compose_options+=$k
                    compose_options+=$value
                done
            else
                compose_options+=$k
                if [[ -n "$opt_args[$k]" ]]; then
                    compose_options+=$opt_args[$k]
                fi
406
407
            fi
        fi
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
    done

    case $state in
        (command)
            __docker-compose_commands && ret=0
            ;;
        (option-or-argument)
            curcontext=${curcontext%:*:*}:docker-compose-$words[1]:
            __docker-compose_subcommand && ret=0
            ;;
    esac

    return ret
}

_docker-compose "$@"