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
Rather than using the global config to selectively including docker-compose.yaml files to enable or disable services, have a look at docker compose profiles.
This avoids the problem of:
You want to run validation including waveform, but don't want to build during the validation command (build is buggy).
But waveform is disabled in global config. Validation command should override this setting, but only for running the service, not building it. So you'll be running with an old version.
Workaround is to tempoarrily turn waveform on in the config just for the build command.
The text was updated successfully, but these errors were encountered:
Rather than using the global config to selectively including docker-compose.yaml files to enable or disable services, have a look at docker compose profiles.
https://docs.docker.com/compose/how-tos/profiles/
https://stackoverflow.com/a/66902046
This avoids the problem of:
You want to run validation including waveform, but don't want to build during the validation command (build is buggy).
But waveform is disabled in global config. Validation command should override this setting, but only for running the service, not building it. So you'll be running with an old version.
Workaround is to tempoarrily turn waveform on in the config just for the build command.
The text was updated successfully, but these errors were encountered: