- 7 Posts
- 12 Comments
Karna@lemmy.mlto
Selfhosted@lemmy.world•How would you expose Jellyfin securely without a vpn?English
1·29 days agoMy bad, sometimes I forget that Tailscale is nothing but wireguard VPN.
Karna@lemmy.mlto
Selfhosted@lemmy.world•How would you expose Jellyfin securely without a vpn?English
510·29 days agoTailscale
Karna@lemmy.mlto
Selfhosted@lemmy.world•Jellyfin to quadruple their prices following Plex's price increasesEnglish
31·29 days agoIf running as rootless docker then it’s free. But, if running as rootful docker then pay up.
/s
Karna@lemmy.mlto
Open Source@lemmy.ml•Which Firefox alternative do you guys recommend?
13·3 months agoLibrewolf.
Karna@lemmy.mlto
Selfhosted@lemmy.world•[beta] degoog - search engine aggregatorEnglish
1·3 months agoPlease refer to this comment: https://lemmy.ml/comment/24567541
If you need any further information, let me know.
Karna@lemmy.mlto
Selfhosted@lemmy.world•[beta] degoog - search engine aggregatorEnglish
2·3 months agoNote that I’m running it on a rootless docker instance, and NOT on Podman. So, the following solution might or might not work for you.
services: degoog: image: ghcr.io/fccview/degoog:latest volumes: - ./.data:/app/data user: "0:0" ports: - "4444:4444" restart: unless-stoppedExplanation: rootless docker works a bit different from rootful docker. user 1000 (which is you on your server/machine) will be mapped to a different UID (e.g. 32555). This is to ensure that any process in docker container can’t have access to folders/files that you have access to, in case it manages to break free of docker containerization.
When you put user: “0:0” in a rootless docker container, it will assume your UID 1000 (which is you on your server/machine) inside docker container.
While it solves the file permission issue, but it is NOT a recommended way.
with user:1000:1000

with user:0:0

Karna@lemmy.mlto
Selfhosted@lemmy.world•[beta] degoog - search engine aggregatorEnglish
1·3 months agoAh! Forget about that part. The docker-compose file you provided on repo works for rootfull docker.
For rootless docker, it works, but library import is not possible for file permission issue.
I think I know how to solve it, I will give it a try over weekend, and will let you know.
Karna@lemmy.mlto
Selfhosted@lemmy.world•[beta] degoog - search engine aggregatorEnglish
3·3 months agoFirst of all, thanks a ton.
I have been using SearxNG for more than year, running it as docker container on my Homelab. It’s connected to internet via Mullvad VPN.
Lately, I have see both Google and Bing search engines are either not working or returning complete garbage results.
My firewall setup doesn’t allow any incoming connection to homelab, except from LAN. So, bot accessing my SearxNG instance might not be the issue.
With degoog installed in the same fashion (docker + VPN), google engine seems to be unblocked for me (so far).
Not sure why degoog is not getting rate limited like SearxNG on the same system and same VPN. But, at least I’m happy :)
Karna@lemmy.mlto
Selfhosted@lemmy.world•How do I access my services from outside?English
22·4 months agoTailscale, if you don’t want to make your services available to anyone else than you (and people you want to grant access to).









You can self host the LT service as a docker container.
https://github.com/languagetool-org/languagetool