Multi service local dev with Docker Compose networking volumes
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill docker-compose-workflows --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Docker Compose Workflows?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-docker-compose-workflows)More formats (shields.io, HTML) on the badges page.
---
name: docker-compose-workflows
description: "Multi service local dev with Docker Compose networking volumes"
---
# Docker Compose Workflows
## Basic Setup
```yaml
version: "3.8"
services:
app:
build: .
ports: ["8000:8000"]
volumes: [".:/app"]
depends_on: [db]
db:
image: postgres:16
environment:
POSTGRES_DB: myapp
```
## Commands
```bash
docker compose up -d # Start
docker compose logs -f # Follow logs
docker compose down -v # Stop + remove volumes
docker compose restart # Restart services
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!