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
When using this package to test a custom container, it'd be good to build the containers before starting the service every time the test runs to make sure any new changes to the Dockerfiles are tested.
I think this can be a param to the DockerCompose constructor: def __init__(self, filepath, compose_file_name="docker-compose.yml", build=False):
If True, it would add a --build option to the docker-compose command inside start()
The text was updated successfully, but these errors were encountered:
When using this package to test a custom container, it'd be good to build the containers before starting the service every time the test runs to make sure any new changes to the Dockerfiles are tested.
I think this can be a param to the
DockerCompose
constructor:def __init__(self, filepath, compose_file_name="docker-compose.yml", build=False):
If
True
, it would add a--build
option to thedocker-compose
command insidestart()
The text was updated successfully, but these errors were encountered: