--- - hosts: tau become: true vars: ansible_python_interpreter: /usr/bin/python3 docker_compose_version: "1.25.4" docker_compose_path: /usr/local/bin/docker-compose roles: - role: ansible.timezone tasks: - name: Update and clean package cache apt: update_cache: true cache_valid_time: 3600 autoclean: true - name: Ensure unattended-upgrades is installed and up to date apt: name: unattended-upgrades state: latest - name: Setup unattended-upgrades include_role: name: ansible-role-unattended-upgrades vars: unattended_origins_patterns: - 'origin=Debian,archive=buster-security' - 'o=Debian,a=buster-updates' unattended_package_blacklist: [cowsay] unattended_mail: 'root' - name: Setup users include_role: name: users - name: Install Docker include_role: name: install-docker - name: Setup Docker Environment include_tasks: tasks/docker_env.yml - name: Setup httpd include_tasks: tasks/httpd.yml - name: Setup phpmyadmin include_tasks: tasks/phpmyadmin.yml