FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
DevOps-Python-tools/docker_pull_all_images.sh at master · mFuscolin/DevOps-Python-tools · GitHub
mFuscolin
/
DevOps-Python-tools
Public
forked from
HariSekhon/DevOps-Python-tools
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
DevOps-Python-tools
/
docker_pull_all_images.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
25 lines (22 loc) · 662 Bytes
Breadcrumbs
DevOps-Python-tools
/
docker_pull_all_images.sh
Copy path
File metadata and controls
executable file
·
25 lines (22 loc) · 662 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!
/usr/bin/env bash
#
vim:ts=4:sts=4:sw=4:et
#
#
Author: Hari Sekhon
#
Date: 2017-08-29 14:57:23 +0200 (Tue, 29 Aug 2017)
#
#
https://github.com/HariSekhon/DevOps-Python-tools
#
#
License: see accompanying Hari Sekhon LICENSE file
#
#
If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
#
https://www.linkedin.com/in/HariSekhon
#
set
-euo pipefail
[
-n
"
${DEBUG
:-
}
"
]
&&
set
-x
srcdir=
"
$(
dirname
"
$0
"
)
"
for
docker_image
in
$(
"
$srcdir
/dockerhub_search.py
"
-q harisekhon
)
;
do
echo
"
docker pull
$docker_image
"
docker pull
"
$docker_image
"
echo
done
Back
|
FazBrowse Home
|
New Git URL