1
0
Fork 0

Add nginx proxy server

This commit is contained in:
Andrew Tomaka 2022-12-23 00:08:11 -05:00
parent c3356c957a
commit 6ebb99e148
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE
8 changed files with 160 additions and 2 deletions

View file

@ -0,0 +1,19 @@
---
- name: Add apt key for docker
apt_key:
url: https://download.docker.com/linux/ubuntu/gpg
state: present
- name: Add docker repository into sources list
apt_repository:
repo: deb https://download.docker.com/linux/ubuntu jammy stable
state: present
- name: Install docker packages
apt:
name:
- docker-ce
- docker-ce-cli
- containerd.io
- docker-compose-plugin
state: present