spotify-clone/update.bat

11 lines
164 B
Batchfile

@echo off
echo Updating Spotify Clone...
:: Pull the latest image
docker-compose pull
:: Recreate the container
docker-compose up -d
echo Update complete!
pause