Closed AlexWinder closed 2 years ago
The cleanup.sh script has a line which runs docker system prune --volmes
cleanup.sh
docker system prune --volmes
https://github.com/Cloud-RF/tak-server/blob/2d9c769781d98899a0174099afd12677c5975b8f/scripts/cleanup.sh#L4
This will remove all volumes on the system, including those which aren't part of the tak-server environment.
tak-server
A better way would be use something like docker volume rm --force db_data.
docker volume rm --force db_data
The
cleanup.sh
script has a line which runsdocker system prune --volmes
https://github.com/Cloud-RF/tak-server/blob/2d9c769781d98899a0174099afd12677c5975b8f/scripts/cleanup.sh#L4
This will remove all volumes on the system, including those which aren't part of the
tak-server
environment.A better way would be use something like
docker volume rm --force db_data
.