summaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-06-22 12:04:28 -0400
committerDessalines <tyhou13@gmx.com>2020-06-22 12:04:28 -0400
commit4332828dd7b721697829de7bf4875e4a0ed00620 (patch)
tree4fb4bbb70eac2892925135a8c32a421ca341f658 /docker
parent5872658f8ceeee372be35ebd7fdd86e568cf8646 (diff)
Fixing some things in the pictrs upgrade script.
Diffstat (limited to 'docker')
-rw-r--r--docker/prod/migrate-pictshare-to-pictrs.bash24
1 files changed, 14 insertions, 10 deletions
diff --git a/docker/prod/migrate-pictshare-to-pictrs.bash b/docker/prod/migrate-pictshare-to-pictrs.bash
index ea3007a6..f4294e13 100644
--- a/docker/prod/migrate-pictshare-to-pictrs.bash
+++ b/docker/prod/migrate-pictshare-to-pictrs.bash
@@ -11,6 +11,10 @@ if [[ ! -f docker-compose.yml ]]; then
exit
fi
+# Fixing pictrs permissions
+mkdir -p volumes/pictrs
+sudo chown -R 991:991 volumes/pictrs
+
echo "Restarting docker-compose, making sure that pictrs is started and pictshare is removed"
docker-compose up -d --remove-orphans
@@ -26,8 +30,8 @@ else
echo "Imagemagick already installed."
fi
-echo "Stopping Lemmy so that users dont upload new images during the migration"
-docker-compose stop lemmy
+# echo "Stopping Lemmy so that users dont upload new images during the migration"
+# docker-compose stop lemmy
echo "Importing pictshare images to pict-rs"
pushd volumes/pictshare/
@@ -46,14 +50,14 @@ for image in $IMAGE_NAMES; do
echo -e "\nImporting $IMAGE_PATH"
ret=0
curl --fail -F "images[]=@$IMAGE_PATH" http://127.0.0.1:8537/import || ret=$?
- if [[ $ret != 0 ]]; then
- read -p "Failed to import $IMAGE_PATH, continue? " yn
- case $yn in
- [Yy]* ) ;;
- [Nn]* ) exit;;
- * ) exit;;
- esac
- fi
+ # if [[ $ret != 0 ]]; then
+ # read -p "Failed to import $IMAGE_PATH, continue? " yn
+ # case $yn in
+ # [Yy]* ) ;;
+ # [Nn]* ) exit;;
+ # * ) exit;;
+ # esac
+ # fi
done
echo "Fixing permissions on pictshare folder"