Commit afb4d19a authored by Jay Ta'ala's avatar Jay Ta'ala
Browse files

Added script to scripts folder that updates all docker images &

containers in subfolders.
parent 203723be
#!/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
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment