In writing a playbook to bring up sentry according to its docs with docker-compose, I ended up with a task list including:
- name: run database migrations command: docker-compose run --rm web upgrade --noinput chdir=/opt/sentry-onpremise - name: create initial user command: docker-compose run --rm web createuser --email [email protected] --password supersecretpassword --superuser chdir=/opt/sentry-onpremise - name: start docker service docker_service: project_src: /opt/sentry-onpremise state: present Is there docker module I could be using instead of the command module calls to `docker-compose run`? For reference, the docker compose file I'm using is at https://github.com/refinery29/sentry-onpremise/blob/master/docker-compose.yml (forked from the original). -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/abdd824e-6f43-426c-bdc3-fe0fe1b56b74%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
