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
376 B
17 lines
376 B
#!/bin/bash
|
|
|
|
# CHECKLIST
|
|
# Change version # in code
|
|
# Change version # below
|
|
# commit changes
|
|
# push commit
|
|
# run script
|
|
version=0.3.0
|
|
image_name=gabehf/sonarr-anime-importer
|
|
|
|
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 |