diff --git a/.gitignore b/.gitignore index 61791ab..465e8c2 100644 --- a/.gitignore +++ b/.gitignore @@ -15,5 +15,4 @@ __pycache__ package-lock.json -test **/*.test.* \ No newline at end of file diff --git a/docker_install.sh b/docker_install.sh new file mode 100644 index 0000000..e9c794e --- /dev/null +++ b/docker_install.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +## Update packages +sudo yum update -y + +## Install docker +sudo yum install -y docker + +## Add user to docker +sudo usermod -d -G docker ec2-user + +## Test authorization +docker ps \ No newline at end of file