services: frontend: image: frontend profiles: [frontend] phpmyadmin: image: phpmyadmin depends_on: [db] profiles: [debug] backend: image: backend db: image: mysql
docker compose --profile debug up
COMPOSE_PROFILES=debug[,develop]
export COMPOSE_PROFILES=debug,develop docker compose up -d
COMPOSE_PROFILES=debug docker compose up
docker compose --profile frontend --profile debug up
docker compose --profile "*"