est.social on üks paljudest sõltumatutest Mastodoni serveritest, mida saab fediversumis osalemiseks kasutada.
est.social on mõeldud Eestis üldkasutatavaks Mastodoni serveriks. est.social is meant to be a general use Mastodon server for Estonia.

Administraator:

Serveri statistika:

90
aktiivsed kasutajad

#docker

20 postitusega19 osalejaga2 postitust täna

so.. ill soon release my demo page for my #pflanzn web app which will be released as open source and it will able to be selfhosted too

#selfhosting #plants #management #docker #foss

sneak peeks attached!

some features: multiple auth configuration (no/basic/oidc), pwa, plantnet identification api, llm integration (mistral, openai, hugging face, ollama), calendar for each plant to see image uploads and waterings,..

Released version 1.5.0 of github.com/unixorn/lima-xbar-p

lima-xbar-plugin works with both xbar and swiftbar to add a #macos menubar item to control your lima VMs and containers.

Thanks to new contributors github/pythoninthegrass and github/deepjia for adding functionality.

xbar/Swiftbar plugin to control lima-vm. Contribute to unixorn/lima-xbar-plugin development by creating an account on GitHub.
GitHubGitHub - unixorn/lima-xbar-plugin: xbar/Swiftbar plugin to control lima-vmxbar/Swiftbar plugin to control lima-vm. Contribute to unixorn/lima-xbar-plugin development by creating an account on GitHub.

FFS! A server can't run both #Docker *and* #Wireguard on #Linux.

Docker creates a "bridge" network interface which, apparently, interferes with WireGuard.

That was a depressing evening of eliminating the impossible. Completely stopping Docker allowed my VPN to connect.

And there's no way to actually run a Docker container without the network bridge (any documentation that says otherwise is lying).

Jätkatud lõim

Right!

#JellyFin installed. Most of my media reorganised and indexed.

#Tailscale deleted. I can't be bothered running it 24/7 on my phone.

#Docker and #NGINX reverse proxy manager installed. Probably done that right. No idea if it'll survive a reboot.

#LetsEncrypt set up with Dynamic DNS. No SSL errors!

HD Streaming over 5G works - but will have to see how adaptive it is on shitty hotel WiFi.

Bit of a faff, but seems to be working. Next step is configuring a Fire Stick to work with it.

우분투에서 snap 으로 docker 를 설치했다가 후회한 얘기

hackers.pub/@arkjun/2025/ubunt

hackers.pub · 우분투에서 snap 으로 docker 를 설치했다가 후회한 얘기우분투를 쓸때는 apt 로만 패키지 관리를 해왔는데 작년 처음 snap 을 써봤다. 작년 사내 테스트용 (물리) 서버에 우분투 24.04.1 LTS 설치하고 snap 으로 docker 설치해서 여러 모니터링 올리고 어제까지도 잘 쓰고 있었는데, 갑자기 오늘 docker ps 명령이 오류가 나서 봤더니, $ docker ps Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? docker -D ps # 디버깅 time="2025-03-12T11:22:58+09:00" level=debug msg="otel error" error="1 errors occurred detecting resource:\n\t* conflicting Schema URL: https://opentelemetry.io/schemas/1.21.0 and https://opentelemetry.io/schemas/1.26.0" 실행도 안되고, 모든 컨테이너는 날라간 상태이고 도커또한 동작하지 않는다. 디버깅 메시지 보면 스키마 버전 충돌이라고 나온다. 자세한 원인분석을 위해 ChatGPT 의 도움을 받았더니 Docker 데몬이 OTel(OpenTelemetry)과 충돌하여, 스키마 버전(1.21.0 vs. 1.26.0)이 일치하지 않아 발생하는 문제입니다. 주로 Snap의 자동 업데이트 중, Docker의 내부 OTel 설정이 깨졌을 때 나타나는 문제입니다. snap 자동 업뎃중에 OTel 충돌로 스키마 버전 불일치 문제라고 한다. 스냅 방식 대신 apt 기반 설치가 더욱 안정적이라고 권장해주길래, (새로운 방식이라 일부러 snap 으로 선택했었는데) 다음부터는 그냥 apt 방식으로 설치하기로 했다. (docker 한정) 물론 이번에도 apt 방식으로 변경해서 설치. sudo snap remove docker sudo apt update sudo apt install -y docker.io sudo systemctl start docker sudo systemctl enable docker sudo systemctl status docker 테스트 서버 관리에 시간을 빼앗긴 후에야, 테스트 서버도 백업해 둬야겠다 싶다. 모니터링 설정이랑 빌드 설정이랑 도커 설정 다 백업해 놔야겠다.