]> git.immae.eu Git - github/bastienwirtz/homer.git/blob - hooks/post_push
Added Tautulli service to ToC
[github/bastienwirtz/homer.git] / hooks / post_push
1 #!/bin/bash
2
3 IFS='-' read -r TAG string <<< "$DOCKER_TAG"
4
5 docker manifest create b4bz/homer:$TAG b4bz/homer:$TAG-amd64 b4bz/homer:$TAG-arm32v7 b4bz/homer:$TAG-arm64v8
6 docker manifest annotate b4bz/homer:$TAG b4bz/homer:$TAG-arm32v7 --os linux --arch arm
7 docker manifest annotate b4bz/homer:$TAG b4bz/homer:$TAG-arm64v8 --os linux --arch arm64 --variant v8
8 docker manifest push --purge b4bz/homer:$TAG