Struggling to manage multi-container applications in #DevOps?
This article shows how #DockerCompose and #PodmanCompose make testing, deployment, and maintenance easy.
Read more: lpi.org/qe0p
#LPI #DevOps
In this post, you will explore some of the capabilities of Docker Compose in order to get your developers up-to-speed for development.
#docker #dockercompose
Episode 7 of the DevOps Tools Engineer 2.0 Introduction series dives into exam objective #ContainerOrchestration.
Learn how #DockerCompose & #PodmanCompose define and run multi-container applications for modern #DevOps workflows: lpi.org/qe0p
#LPI #DevOps
🐳 🐙 Docker Compose tip week starts tomorrow!
This week: a deep dive into managing multiple Compose files.
include, extends, override files — 3 mechanisms that look similar but work very differently.
3 tips, Mon/Wed/Fri. See you tomorrow!
#Docker #Compose #DockerCompose #DevOps
Manage multi-container apps with ease!
Learn how to install and use Docker Compose on Ubuntu 22.04 step by step 🚀
👉 Complete setup guide
wiki.crowncloud.net?How_to_Insta...
#DockerCompose #Ubuntu2204 #Containers #LinuxAdmin #DevOps
Ever wondered how to spin up multiple LLM agents with a single compose file? Docker Compose now lets you define AI model services top‑level, offload to the cloud, and plug in a reasoning engine. Dive into the new workflow! #DockerCompose #LLM #AgentArchitecture
🔗 aidailypost.com/news/docker-...
🐳 Simplifica la gestión de tus archivos Docker compose con esta práctica herramienta
Ve más allá del comando `docker run` y gestiona tus composiciones con fac
thenewstack.io/simplify-managing-your-d...
#DockerCompose #Containers #DevTools #RoxsRoss
Want a slick web UI for your Docker containers? Learn how to spin up Portainer with a one‑line mkdir and Docker Compose. Quick, self‑hosted, and perfect for Linux devs. Dive in for the full step‑by‑step guide! #DockerCompose #Portainer #SelfHosted
🔗 aidailypost.com/news/guide-s...
On the #norsys blog, I've just posted an article which explains how building a local development environment for @valkeyio.bsky.social with Docker Compose.
medium.com/norsys-octog...
#Valkey #Docker #DockerCompose
Sur le blog de #norsys, je viens de publier un billet qui explique comment monter un environnement local pour @valkeyio.bsky.social avec Docker Compose.
medium.com/norsys-octog...
#Valkey #Docker #DockerCompose
Synology & UGREEN: Dockhand Docker Version 1.0.15
mariushosting.com/synology-ugr... #Synology #UGREEN #NAS #SynologyNAS #UGREENAS #UGREENNAS #Docker #Dockhand #DockerCompose #DockerStack #DockerManager #ContainerManager #selfhost #selfhosted #selfhosting #homelab #OpenSource #mariushosting
How to Install Immich Power Tools on Your Synology NAS
mariushosting.com/how-to-insta... #Synology #NAS #Docker #Portainer #DockerCompose #Stack #ImmichPowerTools #ImmichTools #selfhosted #selfhosting #selfhost #DSM #DSM7 #DSM71 #DSM72 #DSM73 #homelab #OpenSource #mariushosting
On the #norsys blog, I've just posted an article which explains how building a local development environment for @dependencytrack.bsky.social with Docker Compose, code and examples included.
medium.com/norsys-octog...
#DependencyTrack #Trivy #Docker #DockerCompose #Security #DependencyManagement
🐳 🐙 Docker Compose Tip #16
Prevent container resource exhaustion!
Set CPU and memory limits:
deploy:
resources:
limits:
cpus: '0.5'
memory: 512M
Monitor with: docker compose stats
Full guide: lours.me/posts/compose-tip-016-resource-limits/
#Docker #DockerCompose #Performance
In this post, you will explore some of the capabilities of Docker Compose in order to get your developers up-to-speed for development.
#docker #dockercompose
🐳 🐙 Docker Compose Tip #12
One Dockerfile, multiple environment builds!
Use `target` to build specific stages:
• Dev stage: 450MB (with tools)
• Prod stage: 12MB (optimized)
That's 37x smaller! Same Dockerfile.
Details: lours.me/posts/compose-tip-012-target-build-stages/
#Docker #DockerCompose
🐳 🐙 Docker Compose Tip #11
Give you dev containers hot reload capabilities
docker compose up --watch
Auto-syncs code changes, rebuild on dep updates & reloads on config modifications.
Read more: lours.me/posts/compose-tip-011-docker-compose-watch/
#Docker #DockerCompose #DevTools
Learn how to install Docker Compose on AlmaLinux 9 step by step:
Complete installation guide:
wiki.crowncloud.net?How_to_Insta...
#DockerCompose #AlmaLinux9 #Docker #Containers #DevOps
🐳 🐙 Week 2 Docker Compose Tips recap!
• Service discovery: DNS magic built-in
• Restart single services
• DHI healthchecks: sidecar pattern
• OCI artifacts: one-command deploys
• init: true - no more zombies
lours.me/tags/docker-compose/
#Docker #DockerCompose
🐳 🐙 Docker Compose Tip #7
Need to restart just one service? Keep the rest running:
docker compose up -d web
Updates and restarts ONLY the web service. Database, message broker queues stay up, no data loss.
Guide: lours.me/posts/compose-tip-007-restart-single/
#Docker #DockerCompose
🐳 🐙 Docker Compose Tip #6: Service discovery
No more hardcoded IPs. Services find each other by name:
web:
environment:
DB_HOST: postgres # Just the service name
Compose handles the DNS. Zero config needed.
Details: lours.me/posts/compose-tip-006-service-discovery/
#Docker #DockerCompose
Just migrated this #Mastodon server's #DockerCompose setup from #DockerDesktop to #Colima. (Also migrated #CalibreWeb.) On an 8 GB RAM M2 #Mac mini with 8 cores, you need all the memory and CPU savings you can get.
https://PhoenixTrap.com #blog post to come, because I ran into #database file […]
🐳 🐙 Launched daily Docker Compose tips!
this week we talked about config command, --env-file flag, health checks, ssh in builds...
All at lours.me/posts/
What Compose challenges do you face? Let me know!
Coming soon Service discovery, DHI security, OCI artifacts & more! 🚀
#Docker #DockerCompose
🐳 Docker Compose Tip #3
"Connection refused" at startup? Stop using sleep 10.
depends_on:
db:
condition: service_healthy
Now your app waits for the database to actually be ready.
Examples: lours.me/posts/compose-tip-003-depends-on-healthcheck/
#Docker #DockerCompose
🐳 Docker Compose Tip #2
Same compose.yml for dev/staging/prod:
docker compose --env-file .env.dev up
docker compose --env-file .env.prod up
No more copying env vars around. Each environment gets its own file.
More: lours.me/posts/compose-tip-002-env-files/
#Docker #DockerCompose
🐳 Docker Compose Tip #1
Profiles confusing? Use docker compose config to debug.
`docker compose --profile dev config --services`
Shows ALL services that will run, including dependencies pulled in without the profile.
Details: lours.me/posts/compose-tip-001-validate-config
#Docker #DockerCompose
How to Install Spoolman on Your UGREEN NAS
mariushosting.com/how-to-insta... #UGREEN #UGREENNAS #UGREENAS #NAS #Portainer #Spoolman #Docker #DockerCompose #selfhost #seflhosted #selfhosting #homelab #OpenSource #Octoprint #Moonraker #UGOS #UGOSPRO #mariushosting
Define once. Deploy everywhere.
Install and use Docker Compose on Ubuntu 25.10 to build, run, and manage multi-container applications with clean, repeatable workflows.
wiki.crowncloud.net?How_to_enabl...
#DockerCompose #Ubuntu2510 #Containers #DevOps #Linux