Golden Codes - armanexplorer planet

Practical code snippets for Django, Python, Bash, Git and All!

View on GitHub
## 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 {}