mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-04-26 09:46:00 +03:00
[GH-ISSUE #435] Admin Panel #260
Labels
No labels
SSO
Third party
better for forum
bug
bug
documentation
duplicate
enhancement
future Vault
future Vault
future Vault
good first issue
help wanted
low priority
notes
pull-request
question
troubleshooting
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/vaultwarden#260
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
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 16, 2019).
Original GitHub issue: https://github.com/dani-garcia/vaultwarden/issues/435
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 16, 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.