Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions ansible/playbooks/deploy-airflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@
gather_facts: yes

tasks:
#- name: Remove conflicting Docker repository files
# file:
# path: "{{ item }}"
# state: absent
# loop:
# - /etc/apt/sources.list.d/docker.list
# - /etc/apt/sources.list.d/download_docker_com_linux_ubuntu.list
# ignore_errors: yes

- name: Update apt package cache
apt:
update_cache: yes
Expand Down Expand Up @@ -45,7 +54,7 @@
# repo: "deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu {{ ansible_facts['distribution_release'] }} stable"
# state: present
# filename: docker

#- name: Install Docker and Docker Compose
# apt:
# name:
Expand All @@ -56,13 +65,13 @@
# - docker-compose-plugin
# state: present
# update_cache: yes

#- name: Start and enable Docker service
# systemd:
# name: docker
# state: started
# enabled: yes

#- name: Add user to docker group
# user:
# name: "{{ ansible_user }}"
Expand Down