feat: remove nupes.social Mastodon (docker) instance

This commit is contained in:
VC
2024-07-05 11:53:46 +02:00
parent 8b2317da6a
commit cabaa976aa
13 changed files with 2 additions and 250 deletions

View File

@@ -1,30 +0,0 @@
---
- name: Get docker repo key
ansible.builtin.apt_key:
url: https://download.docker.com/linux/debian/gpg
state: present
- name: Install docker repo
ansible.builtin.apt_repository:
repo: "deb [arch=amd64] https://download.docker.com/linux/debian {{ ansible_facts['distribution_release'] }} stable"
state: present
- name: Install docker, docker-compose and extra packages
ansible.builtin.package:
name: "{{ item }}"
state: present
loop:
- docker-ce
- docker-ce-cli
- containerd.io
- docker-compose
- fuse-overlayfs
- name: Create docker directory
ansible.builtin.file:
path: /srv/docker
owner: root
group: root
state: directory
mode: 0755