Make Sure the Data (SQL) or any other important files are mounted in external volume and can be reused.
Find, Stop & Delete ( example: NocoDB) Docker Container
# find NocoDB container ID
docker ps
# stop NocoDB container
docker stop <YOUR_CONTAINER_ID>
# delete NocoDB container
docker rm <YOUR_CONTAINER_ID>
Find & Remove NocoDB Docker Image
# find NocoDB image
docker images
# delete NocoDB image
docker rmi <YOUR_IMAGE_ID>
Pull the latest NocoDB image with same environment variables (compose yml)
Was this helpful?
0 / 0