We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Please allow an inline definition of the compose content instead of using a project_src like with V1.
for example:
- name: Start flask project with inline definition community.docker.docker_compose_v2: project_name: flask definition: version: '2' services: db: image: postgres web: build: "{{ playbook_dir }}/flask" command: "python manage.py runserver 0.0.0.0:8000" volumes: - "{{ playbook_dir }}/flask:/code" ports: - "8000:8000" depends_on: - db register: output
The text was updated successfully, but these errors were encountered:
I've started implementing this in #832.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
SUMMARY
Please allow an inline definition of the compose content instead of using a project_src like with V1.
ISSUE TYPE
COMPONENT NAME
ADDITIONAL INFORMATION
for example:
The text was updated successfully, but these errors were encountered: