-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker_compose: Error starting project up() got an unexpected keyword argument 'start' #180
Comments
What version of |
I guess we could modify the |
I had thought of doing it this way and just making a note under the up_kwargs = {
'service_names': service_names,
'start_deps': start_deps,
'strategy': converge,
'do_build': do_build,
'detached': detached,
'remove_orphans': self.remove_orphans,
'timeout': self.timeout,
}
if LooseVersion(compose_version) >= LooseVersion('1.17.0'):
up_kwargs['start'] = not self.stopped
self.project.up(**up_kwargs) |
I think this behavior is ok, though I would emit a warning in that case (or at least if |
resolved_in_pr #182 |
thanks! |
SUMMARY
Hi, when using Ansible 4.3.0 and
community.docker.docker_compose
with Python3.7.2
executing the following code:I get the following error:
ISSUE TYPE
COMPONENT NAME
community.docker.docker_compose
ANSIBLE VERSION
COLLECTION VERSION
OS / ENVIRONMENT
Linux 262fe73b9913 5.10.45-1-lts
minideb/minideb:latest
thanks!
The text was updated successfully, but these errors were encountered: