mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-02-05 00:29:40 +03:00
Admin Panel #261
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @daxda on GitHub (Mar 17, 2019).
Hi! I have a problem with the activation of the admin panel. when I try to give the command I found on the wiki. I get this error:
docker: Error response from daemon: Conflict. The container name "/bitwarden" is already in use by container "9c51e44c50f2bcaf80ebbb7c018caf923e89d2c5735e17f665d5ee6f6ff87da7". You have to remove (or rename) that container to be able to reuse that name.
@mprasil commented on GitHub (Mar 17, 2019):
What docker command tells you back is your issue. You probably ran the container with the same name already - most likely from your previous
docker runcommand? You can see all containers (including stopped ones) withdocker ps -a.You can remove stopped container with
docker rm <container_name>.I assume you're following the wiki. It doesn't say that explicitly, but you cannot change running container settings just by re-running
docker runcommand with different parameters. You need to stop previous container,rmit if you want to keep the same name and start again with new parameters. Hope that helps.@mprasil commented on GitHub (Apr 10, 2019):
I'm going to close this as I think the question was answered, but feel free to reopen if you have more questions regarding this.