Run containers:
docker compose --project-directory . -f docker/docker-compose.dev.yml up
Stop containers:
docker compose --project-directory . -f docker/docker-compose.dev.yml stop
Remove containers:
docker compose --project-directory . -f docker/docker-compose.dev.yml down
The commit message must start with one of the following:
build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)ci: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)docs: Documentation only changesfeat: A new featurefix: A bug fixperf: A code change that improves performancerefactor: A code change that neither fixes a bug nor adds a featurestyle: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) `test: Adding missing tests or correcting existing tests