Merge pull request #9 from maanoobh/specify-service
Specify which service when pulling the update (to avoid pulling non-chosen containers of the same stack)
This commit is contained in:
commit
64c1f097b1
7
dockcheck.sh
Normal file → Executable file
7
dockcheck.sh
Normal file → Executable file
@ -135,9 +135,10 @@ if [ -n "$GotUpdates" ] ; then
|
||||
if [ "$UpdYes" != "${UpdYes#[Yy]}" ] ; then
|
||||
for i in "${SelectedUpdates[@]}"
|
||||
do
|
||||
ContPath=$(docker inspect "$i" --format '{{ index .Config.Labels "com.docker.compose.project.config_files"}}')
|
||||
$DockerBin -f "$ContPath" pull
|
||||
$DockerBin -f "$ContPath" up -d
|
||||
ContPath=$(docker inspect "$i" --format '{{ index .Config.Labels "com.docker.compose.project.config_files" }}')
|
||||
ContName=$(docker inspect "$i" --format '{{ index .Config.Labels "com.docker.compose.service" }}')
|
||||
$DockerBin -f "$ContPath" pull "$ContName"
|
||||
$DockerBin -f "$ContPath" up -d "$ContName"
|
||||
done
|
||||
else
|
||||
printf "\nNo updates installed, exiting.\n"
|
||||
|
Loading…
Reference in New Issue
Block a user