initial commit
This commit is contained in:
65
roles/docker/tasks/main.yml
Normal file
65
roles/docker/tasks/main.yml
Normal file
@ -0,0 +1,65 @@
|
||||
- name: Install required system packages
|
||||
apt:
|
||||
pkg:
|
||||
- apt-transport-https
|
||||
- ca-certificates
|
||||
- curl
|
||||
- software-properties-common
|
||||
- python3-pip
|
||||
- virtualenv
|
||||
- python3-setuptools
|
||||
state: latest
|
||||
update_cache: true
|
||||
|
||||
- name: Add Docker GPG apt Key
|
||||
apt_key:
|
||||
url: https://download.docker.com/linux/ubuntu/gpg
|
||||
state: present
|
||||
|
||||
- name: Add Docker Repository
|
||||
apt_repository:
|
||||
repo: deb https://download.docker.com/linux/debian bookworm stable
|
||||
state: present
|
||||
|
||||
- name: Update apt and install docker-ce
|
||||
apt:
|
||||
name: docker-ce
|
||||
state: latest
|
||||
update_cache: true
|
||||
|
||||
- name: copy over ufw-docker.sh
|
||||
ansible.builtin.copy:
|
||||
src: ufw-docker.sh
|
||||
dest: /usr/local/bin/ufw-docker.sh
|
||||
owner: root
|
||||
mode: 755
|
||||
|
||||
- name: execute ufw-docker.sh
|
||||
ansible.builtin.shell: /usr/local/bin/ufw-docker.sh install
|
||||
|
||||
- name: make directories
|
||||
ansible.builtin.file:
|
||||
path: "{{ item }}"
|
||||
state: directory
|
||||
loop:
|
||||
- /opt/stacks
|
||||
- /opt/dockge
|
||||
|
||||
- name: copy dockge compose file
|
||||
ansible.builtin.copy:
|
||||
src: dockge-compose.yml
|
||||
dest: /opt/dockge/dockge.yml
|
||||
owner: root
|
||||
mode: 644
|
||||
|
||||
- name: deploy dockge stack
|
||||
community.docker.docker_compose_v2:
|
||||
project_src: /opt/dockge
|
||||
files:
|
||||
- dockge.yml
|
||||
|
||||
- name: Install caddy
|
||||
import_tasks: caddy.yml
|
||||
|
||||
- name: Install gitea
|
||||
import_tasks: gitea.yml
|
Reference in New Issue
Block a user