mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-04-25 17:25:57 +03:00
[GH-ISSUE #2775] First time setting up docker/VW strange res error? #1372
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#1372
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 @DudeThatsErin on GitHub (Sep 28, 2022).
Original GitHub issue: https://github.com/dani-garcia/vaultwarden/issues/2775
This is my console when trying to set it up using the stuff on the main page: https://srcb.in/fYNKW5jHl3
I've tried googling the error and you can see me running a command to cancel all docker instances and yet it still doesn't work for some reason.
I would love to get this working but idk what is happening.
This is on my VPS with Hostinger with these setups:
I am saving up to afford a bigger server with more RAM but for now this is what I have.
@BlackDex commented on GitHub (Sep 28, 2022):
In theory 1G should be enough. But could you try the Alpine based images, and see if that helps?
@BlackDex commented on GitHub (Sep 28, 2022):
Ow, wait, you seem to be using port 80 already for something else. You can't run two applications on the same port without a proxy.
@DudeThatsErin commented on GitHub (Sep 28, 2022):
Oh so changing the port should fix that? Good to know.
@BlackDex commented on GitHub (Sep 28, 2022):
If you would use
-p 8080:80that would probably work.@DudeThatsErin commented on GitHub (Sep 28, 2022):
So, that worked but now I have a different error...
@DudeThatsErin commented on GitHub (Sep 28, 2022):
Oh, I can't spell, hold on... Spelled correctly and same error.
@DudeThatsErin commented on GitHub (Sep 28, 2022):
I got it. It was
docker start vaultwarden.Is there a way to use it on a domain like domain.com? So, I can go to domain.com:8080 to access the vault, instead of an IP?
@stefan0xC commented on GitHub (Sep 28, 2022):
I'd advise against running commands you find googling when you don't even know what the problem is or what the command actually does.
docker rm -f $(docker ps -aq)removes all containers which might not be what you wanted. I would have at least checked the output ofdocker ps -ato see which containers would be affected and if they were running (the-fmeans forcefully killing the container which if you're unlucky might lead to data corruption).Side note: this is a bug tracker and not the support forum. If you prefer to chat, you can visit the #vaultwarden:matrix.org room on Matrix. There is also the wiki with many useful resources and examples that might just answer your questions or at least should help get you started.
@DudeThatsErin commented on GitHub (Sep 28, 2022):
Alright, thank you.