Files
band-management/docker-compose.yml
bert.hausmans 1cb7674d52 refactor: align codebase with EventCrew domain and trim legacy band stack
- Update API: events, users, policies, routes, resources, migrations
- Remove deprecated models/resources (customers, setlists, invitations, etc.)
- Refresh admin app and docs; remove apps/band

Made-with: Cursor
2026-03-29 23:19:06 +02:00

43 lines
971 B
YAML

# Event Crew - Development Services
# PHP/Node run natively for best Cursor IDE performance
services:
mysql:
image: mysql:8.0
container_name: bm_mysql
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: event_crew
MYSQL_USER: event_crew
MYSQL_PASSWORD: secret
volumes:
- mysql_data:/var/lib/mysql
- ./docker/mysql/my.cnf:/etc/mysql/conf.d/my.cnf:ro
command: --default-authentication-plugin=mysql_native_password
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-u", "root", "-proot"]
interval: 5s
timeout: 5s
retries: 10
redis:
image: redis:alpine
container_name: bm_redis
ports:
- "6379:6379"
volumes:
- redis_data:/data
mailpit:
image: axllent/mailpit
container_name: bm_mailpit
ports:
- "8025:8025" # Web UI
- "1025:1025" # SMTP
volumes:
mysql_data:
redis_data: