no sudo in docker-reset, all is with user 1000

This commit is contained in:
pedro 2024-11-27 09:31:13 +01:00
parent 8eb89e602d
commit ba6c955463

View file

@ -20,7 +20,7 @@ main() {
echo "WARNING: .env was not there, .env.example was copied, this only happens once" echo "WARNING: .env was not there, .env.example was copied, this only happens once"
fi fi
# remove old database # remove old database
sudo rm -vfr ./db/* rm -vfr ./db/*
docker compose down -v docker compose down -v
docker compose build docker compose build
docker compose up ${detach_arg:-} docker compose up ${detach_arg:-}