You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
374 B
17 lines
374 B
#!/bin/bash
|
|
|
|
# CHECKLIST
|
|
# Change version # in code
|
|
# Change version # below
|
|
# commit changes
|
|
# push commit
|
|
# run script
|
|
version=0.0.2
|
|
image_name=gabehf/sonarr-seadex-proxy
|
|
|
|
git tag v$version
|
|
git push origin v$version
|
|
docker build --tag $image_name:$version .
|
|
docker tag $image_name:$version $image_name:latest
|
|
docker push $image_name:$version
|
|
docker push $image_name:latest |