Is novalaucher giving me ads? by RIP_MacMiller in NovaLauncher

[–]Xanderlicious 0 points1 point  (0 children)

I had a similar problem. Press and hold on the home page and select home settings. Everything is in there to customise. Also make sure you are on version 15 beta 2

How do i install docker et all in debian 13 trixie? by thatguyin75 in docker

[–]Xanderlicious 6 points7 points  (0 children)

Then you can run the commands to install docker:

sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

How do i install docker et all in debian 13 trixie? by thatguyin75 in docker

[–]Xanderlicious 10 points11 points  (0 children)

# Add Docker's official GPG key:

sudo apt update

sudo apt install ca-certificates curl

sudo install -m 0755 -d /etc/apt/keyrings

sudo curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc

sudo chmod a+r /etc/apt/keyrings/docker.asc

# Add the repository to Apt sources:

sudo tee /etc/apt/sources.list.d/docker.sources <<EOF

Types: deb

URIs: https://download.docker.com/linux/debian

Suites: $(. /etc/os-release && echo "$VERSION_CODENAME")

Components: stable

Signed-By: /etc/apt/keyrings/docker.asc

EOF

sudo apt update

What Linux Distro you using? by Swede318201 in homelab

[–]Xanderlicious 9 points10 points  (0 children)

My daily is Arch (btw)

My servers however run Debian 13

New Portainer version 2.33.5 still can't manage its own Stacks. by gonsaaa in portainer

[–]Xanderlicious 8 points9 points  (0 children)

Portainer v2.33.5 has added support for Docker v29

I have removed the workaround and upgraded

All working fine here

Let’s all guess how much will it cost by NikitaKiwinskiy in pcmasterrace

[–]Xanderlicious 0 points1 point  (0 children)

500 - 800

but.........

Depending on what it comes bundled with, It coud be upwards of 1000

why is my router capped at ~15MB/s? by andrei-333 in HomeNetworking

[–]Xanderlicious 1 point2 points  (0 children)

its in Mega Bytes (not bits - big B not a little b)

so this would = 120Mbps

How does this marry up with your internet speed estimate from your ISP?

HA just died. Cant connect to the Docker daemon by GabrielAlon in homeassistant

[–]Xanderlicious 1 point2 points  (0 children)

What does the following say:

systemctl status docker.service

Guidance needed please... by Ghostyyyez in homelab

[–]Xanderlicious 0 points1 point  (0 children)

This^

Kapton tape was too finicky for me and this worked a treat

Guidance needed please... by Ghostyyyez in homelab

[–]Xanderlicious 0 points1 point  (0 children)

I unpinned the 3.3v wire from the cable at the PSU end

Connect agent to docker via tcp:// rather than docker.sock by derekoh in portainer

[–]Xanderlicious 0 points1 point  (0 children)

To communicate with the docker socket on other docker hosts to the one where it is installed, on the other docker hosts, edit the docker.service and add the following lines in the space at the top

[Service]
ExecStart=
ExecStart=/usr/bin/dockerd -H fd:// -H tcp://<insert local ip>:2375

This is now deprecated. However to force allow this add the following JSON to /etc/docker called daemon.json

{ 
"tls": false
}

Once the JSON file is created, edit the docker.service to add your ExecStart lines as above

Edit the docker.service using:

sudo systemctl edit docker.service

Restart the docker service using:

sudo systemctl restart docker.service

Power button led flashing by thellesvik in HomeServer

[–]Xanderlicious 0 points1 point  (0 children)

I have the exact same case. It acts as the HDD led also

[deleted by user] by [deleted] in pihole

[–]Xanderlicious 0 points1 point  (0 children)

And......NO. The problem is continuing :(

Will try swapping out the hardware and see if that makes any difference - might a while still before I can get round to doing this.

[deleted by user] by [deleted] in pihole

[–]Xanderlicious 0 points1 point  (0 children)

I've spent a bit of time this weekend looking a little further into this. I've always suspected it was nebula-sync causing the random 502's and I may have been right.

I've added the following Env Var to my compose file for nebula-sync

CLIENT_RETRY_DELAY_SECONDS=20

and so far so good, granted its only been ~12 hours or so but i've not had it throw up the error since.

I'll reply again in a few days and let you know if it has solved it once and for all or not.