## docker push
sed -n "s/\(docker.*\):.*/\1:latest/p" docker-compose.yaml | sort | uniq | cut -d" " -f6 | xargs -I{} docker push {}
## docker push
sed -n "s/\(docker.*\):.*/\1:latest/p" docker-compose-django.yaml | sort | uniq | cut -d" " -f6 | xargs -I{} docker pull {}
push all registry image to the registry
docker images --format ":" | grep registry.example | xargs -I {} docker push {}