Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Jay Ta'ala
jt-config-repo
Commits
afb4d19a
Commit
afb4d19a
authored
Apr 08, 2021
by
Jay Ta'ala
Browse files
Added script to scripts folder that updates all docker images &
containers in subfolders.
parent
203723be
Changes
1
Show whitespace changes
Inline
Side-by-side
scripts/docker-compose-update-subs
0 → 100755
View file @
afb4d19a
#!/bin/bash
for
d
in
$(
ls
-d
*
/
)
;
do
echo
-e
"
\n
==> pulling
$d
"
cd
$d
;
dc pull
;
echo
-e
"==> up
$d
"
dc up
-d
;
cd
..
;
done
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment