--- # Default variables for the docker-compose role # Infrastructure # Ansible instructions to deploy the infrastructure # Copyright (C) 2020 Saibotk # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, version 3 of the License. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Control if the docker-compose package from the EPEL should be removed (default) docker_compose_package: "docker-compose" docker_compose_package_state: "absent" # Should a docker-compose wrapper script be deployed? # This will ensure, that you can still use the `docker-compose` command as usual. docker_compose_install_wrapper: true docker_compose_wrapper_path: /usr/local/bin/docker-compose # Should docker-compose be installed via pip to another target? # This is used to prevent docker-compose from corrupting other system-wide installed pip packages and thus # the package will be installed standalone in another directory as defined below. docker_compose_python_package_install: true docker_compose_python_package_path: /opt/python2/ansible-dependencies # The name of the package to install pip via yum docker_compose_python_pip_package: "python-pip" docker_compose_python_pip_package_state: "present" # The name of the package to install virtualenv via yum docker_compose_python_virtualenv_package: "python-virtualenv" docker_compose_python_virtualenv_package_state: "present" # The pip package name of for `docker-compose` docker_compose_pip_package: "docker-compose" docker_compose_pip_package_state: "present" docker_compose_pip_package_version: "1.24.1"