1
0
Fork 1
mirror of https://example.com synced 2024-11-24 05:36:39 +09:00
firefish/push-docker.sh

11 lines
434 B
Bash
Raw Normal View History

sudo systemctl start docker.service
sudo docker rmi $(docker images -q)
sudo docker compose build
sudo docker tag thatonecalculator/calckey:latest thatonecalculator/calckey:$(git describe --tags --exact-match)
sudo docker images
2022-12-05 06:20:35 +09:00
echo "\nPress enter to continue\n"
read
sudo docker push thatonecalculator/calckey:$(git describe --tags --exact-match)
sudo docker push thatonecalculator/calckey:latest
sudo systemctl stop docker.service