Amazon changed the install in Linux 2. One no-longer using 'yum' See: https://aws.amazon.com/amazon-linux-2/release-notes/
sudo amazon-linux-extras install docker
sudo service docker start
sudo usermod -a -G docker ec2-user
<?php | |
/** | |
* Simple php cache using var_export generated files | |
* | |
* @author Marco Pivetta <[email protected]> | |
*/ | |
class Ocramius_PhpCache { | |
const DEFAULT_TTL = 3600; |
Amazon changed the install in Linux 2. One no-longer using 'yum' See: https://aws.amazon.com/amazon-linux-2/release-notes/
sudo amazon-linux-extras install docker
sudo service docker start
sudo usermod -a -G docker ec2-user