1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-04 10:24:41 +02:00

Fix purge_user.sh

This commit is contained in:
Florent Daigniere 2024-05-03 14:31:18 +02:00
parent da36ac0e92
commit 67a53671f4
2 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#!/bin/bash
# get id of running admin container
admin="$(docker compose ps admin --format=json | jq -r '.[].ID')"
admin="$(docker compose ps admin --format=json | jq -r '.ID')"
if [[ -z "${admin}" ]]; then
echo "Sorry, can't find running mailu admin container."
echo "You need to start this in the path containing your docker-compose.yml."

View File

@ -0,0 +1 @@
Fix purge_user.sh