mirror of
https://github.com/mr-vercetti/tf-aws-demo.git
synced 2025-01-18 19:35:34 +01:00
12 lines
207 B
Bash
12 lines
207 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
yum update -y
|
||
|
amazon-linux-extras install docker
|
||
|
service docker start
|
||
|
usermod -a -G docker ec2-user
|
||
|
chkconfig docker on
|
||
|
|
||
|
docker run \
|
||
|
-p 80:80 \
|
||
|
--restart unless-stopped \
|
||
|
nginxdemos/hello
|