Page 1 of 1
Remove Container
Posted: Sun Mar 30, 2025 4:58 pm
by brandnewuser
Hello I'm not sure were to post this but how do i remove containers completely? I followed this guide for adding jellyseerr (https://yams.media/advanced/add-your-own-containers/). I remove it from the docker-compose.custom.yaml and run "yams restart". I've also deleted the folders from /opt/yams/config. But whenever i re add the container and restart compose.When the container comes back online it still has the data from the previous install/container. Meaning my username and connection to jellyfin are still there. Any ideas?
Re: Remove Container
Posted: Sun Mar 30, 2025 6:20 pm
by rogs
Hey @brandnewuser!
It would be nice to see how you added the container. It looks like you never stopped it, so it is still running. To remove a container:
yams stop
rm -rf /your/install/directory/config/your-container
- Delete the container using
docker rm [CONTAINER_ID]
. To find the ID of the container you want to delete, you can run docker ps -a
.
yams start
Cheers!
Roger.
Re: Remove Container
Posted: Thu Apr 03, 2025 7:06 pm
by brandnewuser