Reference documentation for docker-local architecture, commands, and configuration
View on GitHubFebruary 1, 2026
Select agents to install to:
npx add-skill https://github.com/mwguerra/claude-code-plugins/blob/main/docker-local/skills/docker-local-reference/SKILL.md -a claude-code --skill docker-local-docsInstallation paths:
.claude/skills/docker-local-docs/# docker-local Reference
Quick reference for docker-local Laravel development environment.
## When to Use
Use this reference when you need details about:
- Service credentials and ports
- docker-local CLI commands
- File paths and project structure
- .env configuration requirements
## Service Credentials (Defaults)
| Service | Host | Port | User | Password |
|------------|----------|------|---------|-----------|
| MySQL | mysql | 3306 | laravel | secret |
| PostgreSQL | postgres | 5432 | laravel | secret |
| Redis | redis | 6379 | - | - |
| Mailpit | mailpit | 1025 | - | - |
| MinIO | minio | 9000 | minio | minio123 |
Root MySQL password: `secret`
## URLs
| Service | URL |
|--------------|----------------------------------|
| Projects | `https://{project}.test` |
| Subdomains | `https://{sub}.{project}.test` |
| Traefik | `https://traefik.localhost:8080` |
| Mailpit | `https://mail.localhost` |
| MinIO Console| `https://minio.localhost` |
## Key Commands
### Status & Health
```bash
docker-local status # Check all services and containers
docker-local doctor # Full health check with diagnostics
docker-local fix # Auto-fix common issues
```
### Container Management
```bash
docker-local up # Start all containers
docker-local down # Stop all containers
docker-local restart # Restart all containers
docker-local logs [service] # View logs (nginx, php, mysql, redis, traefik)
```
### Project Management
```bash
docker-local link # Rescan and link all projects
docker-local list # List all detected projects
docker-local make:laravel X # Create new Laravel project
docker-local open [project] # Open project in browser
```
### SSL Certificates
```bash
docker-local ssl:status # Check certificate status
docker-local ssl:regenerate Issues Found: