Closed cazzoo closed 3 weeks ago
Thanks for trying out Harbor!
Unfortunately, my own experience with WSL is rather limited and Harbor isn't tested there explicitly (but known to run as per users reports). Hence, I can offer only somewhat generic guidance based on the online research (sorry if these are something you already tried):
Option 1. Docker in WSL2 without sudo
:
https://stackoverflow.com/q/64710480/15785194
unset DOCKER_HOST
Also
sudo groupadd docker
sudo usermod -aG docker $USER
newgrp docker
Option 2. Credstore, check Docker Desktop config https://forums.docker.com/t/error-failed-to-solve-error-getting-credentials-err-exit-status-1-out/136124/2
"credsStore": "desktop",
Option 3. D-Bus connection issue, try adding the following lines to your ~/.bashrc file in your WSL environment:
if [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then
export DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/1000/bus"
fi
Option 4. D-Bus update
dbus-update-activation-environment --systemd DISPLAY
Closing, if the above didn't help - please feel free to follow up or open a new issue
Hi there! Your project seems really interesting, especially that you provided a way to easily enable LLM or modules (satellites) in a very modular way. I am running on Windows so I decided to get into WSL (Windows Subsystem Linux) which is a Linux kernel running inside Windows. I have docker running on my host and available inside my WSL (socket is shared), hosted in my windows host.
I tried to start harbor, after installing it succesfully, unfortunately, It suddenly stops for a reason I'm unable to diagnose:
Would you have any idea what's going on? Any way to move forward?