docker login

This commit is contained in:
Kekskurse 2023-07-21 19:16:27 +02:00
parent f5b9fd4707
commit 4a1422ec40
Signed by: kekskurse
GPG key ID: 728ACCB59341E7E4

View file

@ -17,6 +17,7 @@
- htop - htop
- unp - unp
- ufw - ufw
- net-tools
- name: Create swap file - name: Create swap file
command: dd if=/dev/zero of={{ swapfile_path }} bs=1M count={{ swapfile_size }} command: dd if=/dev/zero of={{ swapfile_path }} bs=1M count={{ swapfile_size }}
@ -61,6 +62,13 @@
ansible.builtin.apt: ansible.builtin.apt:
deb: https://kekscloud-releases.s3.eu-central-003.backblazeb2.com/http-server-status/stable.deb deb: https://kekscloud-releases.s3.eu-central-003.backblazeb2.com/http-server-status/stable.deb
- name: Allow all access to tcp port 22
community.general.ufw:
rule: allow
port: '3003'
proto: tcp
- name: Allow everything and enable UFW - name: Allow everything and enable UFW
community.general.ufw: community.general.ufw:
state: enabled state: enabled