Add deploy.sh

This commit is contained in:
2025-12-29 18:08:28 +01:00
parent ac2550a8a7
commit df76b182ff

10
api-customer/deploy.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
git pull
docker compose down
if [ "$1" != "preserve" ]; then
docker compose build --no-cache
fi
docker compose up -d --force-recreate