Created
December 3, 2016 04:52
-
-
Save davidkryzaniak/0f1a6738f4247dd8e1ff4781493f7ac5 to your computer and use it in GitHub Desktop.
Auto-Install Docker on AWS Lightsail
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get update | |
sudo apt-get install -y apt-transport-https ca-certificates | |
sudo apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D | |
echo "deb https://apt.dockerproject.org/repo ubuntu-xenial main" | sudo tee /etc/apt/sources.list.d/docker.list | |
sudo apt-get update | |
sudo apt-get install -y linux-image-extra-$(uname -r) linux-image-extra-virtual | |
sudo apt-get install -y docker-engine | |
sudo service docker start | |
sudo docker pull php:5.6-apache | |
sudo docker run --name apachephp -d --restart=always -p 80:80 php:5.6-apache |
No, only Ubuntu OS
Can this script be found somewhere inside the ubuntu instance? Such as in /etc/init.d
. Can it be updated after the instance has been created?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is this applicable to the Amazon Linux or Ubuntu OS type?