This commit is contained in:
nora 2024-07-01 20:42:57 +02:00
parent cbe0694218
commit f78705074d
2 changed files with 5 additions and 1 deletions

View file

@ -61,6 +61,10 @@
- docker-ce - docker-ce
- docker-ce-cli - docker-ce-cli
- docker-compose-plugin - docker-compose-plugin
- name: Ensure docker is started
ansible.builtin.service:
name: docker
state: started
- name: Install caddy - name: Install caddy
ansible.builtin.apt: ansible.builtin.apt:
name: caddy name: caddy

View file

@ -3,7 +3,7 @@
hosts: vps1 hosts: vps1
gather_facts: false gather_facts: false
tasks: tasks:
- name: copy over some fun files - name: Copy over some fun files
ansible.builtin.copy: ansible.builtin.copy:
dest: /var/www/html/nora/ dest: /var/www/html/nora/
src: "../vps1/nora/" src: "../vps1/nora/"