this post was submitted on 10 Feb 2024
20 points (95.5% liked)

Selfhosted

39386 readers
177 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

I’m using tessypowder/backblaze-personal-wine, and I need to reinstall it due to some drive changes. I have tried docker rm [container ID], but when I add the container again, it seems to be stuck with the old wine settings. I have also tried adding it with a new name so it would theoretically be a totally new container, but that also seemed to inherit the broken wine settings.

I noticed that when I first install a container, there is a long ID string that seems to represent the container along with all the dependencies, but when I use docker ps, it only shows me a shorter string that seems to represent Backblaze alone. Should I be using rm with the longer string to remove wine too? If so, how can I get the terminal to display the full ID again so I can accomplish a full removal?

tl;dr How can I do a full removal of a docker container an all sub-programs (such as wine) that were installed along with it?

top 15 comments
sorted by: hot top controversial new old
[–] cybersandwich@lemmy.world 17 points 7 months ago

It sounds like you are using a volume and it's reading the settings you saved. What is the command you ran exactly and I can probably tell you what you need to change or delete to get rid of your old settings.

[–] NullGator@lemmy.ca 15 points 7 months ago (2 children)

rm the container, then run docker system prune -a. This will remove all unused docker images, containers, networks, volumes, etc.

[–] Evkob@lemmy.ca 10 points 7 months ago (1 children)

Don't quote me on this, but I think you'd have to add --volumes

[–] WeirdGoesPro@lemmy.dbzer0.com 7 points 7 months ago (1 children)

Didn’t end up needing to add —volumes. -a did the trick.

[–] victorz@lemmy.world 5 points 7 months ago (1 children)

Betting that -a includes --volumes. 👍

[–] entropicdrift@lemmy.sdf.org 3 points 7 months ago* (last edited 7 months ago)

Correct. The -a stands for all

[–] WeirdGoesPro@lemmy.dbzer0.com 4 points 7 months ago (1 children)

Thanks, this worked perfectly!

[–] NullGator@lemmy.ca 1 points 7 months ago

Glad to help :)

[–] SkyNTP@lemmy.ml 11 points 7 months ago

You should perhaps skim through https://docs.docker.com/storage/ quickly. That document explains that docker containers only have very limited persistence (this is kind of the whole point of containers). The only persistence of note is volumes. This is normally how settings are saved between recreating containers.

As for dependencies, well it's possible that one container depends on the service of another. Perhaps this is what you are describing?

Either way, for more detailed help, you will have to explain your setup with more specific technical details.

[–] MangoPenguin@lemmy.blahaj.zone 4 points 7 months ago

docker rm removes the container and everything inside it.

If you have any bind mounts or volumes with settings stored in there, you'll need to remove those as well.

[–] danafest@lemm.ee 3 points 7 months ago

If you want to clear out any stopped containers, orphaned images, networks, etc run "docker system prune"

What I think is happening is there is a persistent volume mount that needs to be cleared out. If you're using the docker run command with a -v flag, check the host path. It's likely there are saved configurations you're passing into the container.

[–] possiblylinux127@lemmy.zip 1 points 7 months ago

What command are you using to create the container?