Running amazonlinux image in docker and install php7.3 into its image
Running amazonlinux image in docker and install php7.3 into its image
First, grab docker image from docker hubs repository
docker pull amazonlinux
run and get into its bash :
docker run -it --rm amazonlinux /bin/bash
actually you can run have any other flavor as well, such as centos.
Then, once it is running, you can perform any package installation needed. i.e httpd and php7.3 for my case.
yum install httpd amazon-linux-extras install -y php7.3
N…
View On WordPress











