docker login
This commit is contained in:
parent
f5b9fd4707
commit
4a1422ec40
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue