docker

Back Open Paginator
20.02.2026 18:44
selfhostingsh (@selfhostingsh@mastodon.social)

Published: AdGuard Home self-hosting guide

Set up AdGuard Home as a network-wide ad blocker and DNS server with Docker Compose. Modern Pi-hole alternative.

From Docker Compose config to first login — everything you need.

selfhosting.sh/apps/adguard-ho




Show Original Post


20.02.2026 18:24
selfhostingsh (@selfhostingsh@mastodon.social)

New guide: Self-hosting Actual Budget with Docker Compose

Deploy Actual Budget with Docker Compose — a self-hosted personal finance app with envelope budgeting and bank sync.

Full setup walkthrough with Docker Compose config, configuration tips, and common issues.

selfhosting.sh/apps/actual-bud




Show Original Post


20.02.2026 18:20
docker (@docker@techhub.social)

State of Agentic AI Report: Key Findings
#Docker #Research #AIML #Developers #Enterprise

docker.com/blog/state-of-agent




Show Original Post


20.02.2026 18:04
selfhostingsh (@selfhostingsh@mastodon.social)

If your self-hosted app is slow, check if you're running the database on the same disk as the app data. Splitting the DB onto a separate SSD (or at least a separate partition) can dramatically improve I/O performance, especially for Nextcloud and Immich.




Show Original Post


20.02.2026 17:55
robrich (@robrich@hachyderm.io)

docker.com/blog/run-claude-cod - #Claude#code, #Docker Model Runner, and gpt-oss running locally. "The bill stays at $0." Sweet tutorial Dorin Geman.




Show Original Post


20.02.2026 17:44
selfhostingsh (@selfhostingsh@mastodon.social)

Watchtower vs Diun — two approaches to Docker image updates:

Watchtower: automatically pulls and restarts containers (dangerous for production)
Diun: just notifies you when updates are available

For self-hosting, Diun is the safer choice. You should always read release notes before upgrading.




Show Original Post


20.02.2026 17:24
selfhostingsh (@selfhostingsh@mastodon.social)

Before upgrading any self-hosted app, always pull the new image without bringing down the old one first:

```
docker compose pull
docker compose up -d
```

This way the download happens while your service is still running. Downtime = just the container restart, not the image download.




Show Original Post


20.02.2026 17:04
selfhostingsh (@selfhostingsh@mastodon.social)

Self-hosting security tip: never expose Docker ports directly to the internet. Put a reverse proxy (Caddy, Traefik, or Nginx Proxy Manager) in front of everything. It handles SSL, rate limiting, and keeps your actual services off public ports.




Show Original Post


20.02.2026 16:44
selfhostingsh (@selfhostingsh@mastodon.social)

Self-hosting tip: always use named Docker volumes instead of bind mounts for database containers. Named volumes are managed by Docker, harder to accidentally delete, and work consistently across platforms.

```yaml
volumes:
db_data:

services:
postgres:
volumes:
- db_data:/var/lib/postgresql/data
```




Show Original Post


20.02.2026 12:37
asfaload (@asfaload@mastodon.social)

As my use of has increased gradually (asfaload.com/blog/ai_use/), I have more work on my plate. I have just installed tuicr (tuicr.dev/) in the image I use for development (github.com/asfaload/agents_con) , and it looks very helpful to ease review of code generated by an




Show Original Post


20.02.2026 09:02
gnulinux (@gnulinux@social.anoxinon.de)

WinBoat v0.9.0: Es gehen Dinge besser

Stelle das Update auf WinBoat v0.9.0 vor. Mit kurzem Test und ein paar Impressionen.

#Windows #Virtualisierung #Docker #Linux

gnulinux.ch/winboat-v0-9-0-es-




Show Original Post


20.02.2026 01:17
juliancalaby (@juliancalaby@social.treehouse.systems)

So I started building a very specific container image after not being quite able to find what I was looking for, and quickly got a proof-of-concept working, but ran into a blocking issue.

So I started searching and found someone who had built exactly what I was trying to build, archived it late last year, and pointed to something even better.

But, no Kubernetes instructions whatsoever despite advertising support. Thankfully some random had created a pull request with an example config that I was quickly able to adapt.

So lessons learned:
1. Include "docker" as well as "container" and "kubernetes" when searching for container images
2. If you can't find something that does the thing you're looking for, you're not looking hard enough

#containers #docker #kubernetes #tech #it




Show Original Post


1 ...86 87 88 89 90 91 92 93 94 95 96 ...438
UP