mirror of
https://github.com/ansible/awx.git
synced 2026-01-27 00:21:30 -03:30
When docker-compose become the sole method for using Docker directly, some of this was shifted around in ways that are inconsistent with other elements. This adjusts it so that: * The inventory variable default is set like the others, and is less confusing * We no longer mention the Standalone Docker in inventory * We format our INSTALL docs w/r/t this var
14 lines
384 B
YAML
14 lines
384 B
YAML
---
|
|
dockerhub_version: "{{ lookup('file', playbook_dir + '/../VERSION') }}"
|
|
|
|
rabbitmq_version: "3.7.4"
|
|
rabbitmq_image: "ansible/awx_rabbitmq:{{rabbitmq_version}}"
|
|
rabbitmq_default_vhost: "awx"
|
|
rabbitmq_erlang_cookie: "cookiemonster"
|
|
rabbitmq_port: "5672"
|
|
rabbitmq_user: "guest"
|
|
rabbitmq_password: "guest"
|
|
|
|
postgresql_version: "9.6"
|
|
postgresql_image: "postgres:{{postgresql_version}}"
|