mirror of
https://github.com/open-webui/open-webui
synced 2024-11-06 16:59:42 +00:00
9 lines
251 B
Bash
9 lines
251 B
Bash
|
#!/bin/bash
|
||
|
echo "Warning: This will remove all containers and volumes, including persistent data. Do you want to continue? [Y/N]"
|
||
|
read ans
|
||
|
if [ "$ans" == "Y" ] || [ "$ans" == "y" ]; then
|
||
|
docker-compose down -v
|
||
|
else
|
||
|
echo "Operation cancelled."
|
||
|
fi
|