We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1054d0c + 8242fe1 commit e8f3dfaCopy full SHA for e8f3dfa
1 file changed
contrib/completion/bash/docker
@@ -1955,6 +1955,7 @@ _docker_container_run_and_create() {
1955
--pid
1956
--pids-limit
1957
--publish -p
1958
+ --pull
1959
--restart
1960
--runtime
1961
--security-opt
@@ -2153,6 +2154,10 @@ _docker_container_run_and_create() {
2153
2154
esac
2155
return
2156
;;
2157
+ --pull)
2158
+ COMPREPLY=( $( compgen -W 'always missing never' -- "$cur" ) )
2159
+ return
2160
+ ;;
2161
--runtime)
2162
__docker_complete_runtimes
2163
0 commit comments