You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The docker compose file is quite confusing and unintuitive. We can use profiles to make the compose explicitly group services to match they way the dev team are mentally grouping them. This will also make integration testing easier, as the function of the groups is abstracted away from the services that actually make it up.
I suggest broad groups of backend and frontend_*, for example:
docker compose --profile backend --profile frontend_streamlit up
docker compose --profile backend --profile frontend_django up
The text was updated successfully, but these errors were encountered:
The docker compose file is quite confusing and unintuitive. We can use profiles to make the compose explicitly group services to match they way the dev team are mentally grouping them. This will also make integration testing easier, as the function of the groups is abstracted away from the services that actually make it up.
I suggest broad groups of
backend
andfrontend_*
, for example:docker compose --profile backend --profile frontend_streamlit up
docker compose --profile backend --profile frontend_django up
The text was updated successfully, but these errors were encountered: