mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 06:56:15 +00:00
Fix filemanager permissions (#508)
* Fix filemanager permissions * fix filemanager permissions * fix tests warning
This commit is contained in:
21
docker/publish.sh
Normal file
21
docker/publish.sh
Normal file
@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
|
||||
TAG=$1
|
||||
|
||||
if [ -z "$TAG" ]; then
|
||||
echo "No tag provided"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
rm -rf /tmp/vito
|
||||
|
||||
git clone git@github.com:vitodeploy/vito.git /tmp/vito
|
||||
|
||||
cd /tmp/vito || exit
|
||||
|
||||
docker buildx build . \
|
||||
-f docker/Dockerfile \
|
||||
-t vitodeploy/vito:"$TAG" \
|
||||
--platform linux/amd64,linux/arm64 \
|
||||
--no-cache \
|
||||
--push
|
Reference in New Issue
Block a user