Installing PHP on Alpine Linux

Step 1: Pull the alpine image from the docker hub.

docker pull alpine

 

Step 2: Now make a container from this image and enter it. The name of the container will be sample_cont for this article.

docker run -t -d –name <container_name> alpine

 

Now run commands inside this container using the “exec” command. Keep in mind that alpine has a “sh” shell.

docker exec -it sample_cont /bin/sh

 

How to Install PHP on Alpine Linux?

Alpine Linux is a Linux distro that is lightweight and security-focused. The main aim of alpine is to be minimalistic be it in scope or space. Since it is small in size it is used in those containers which require less time for booting. Unlike other distros which use GNU, Glibc alpine used musl, busybox. PHP is a general-purpose, server-side scripting language that is used for making dynamic and interactive websites. It was created by a danish programmer in 1993. PHP is short for PHP: HYPERTEXT PREPROCESSOR. Some features of PHP are:

  • It is open-source and has a large number of users.
  • Used in creating dynamic web content.
  • Multi-server and Multi-platform compatible.
  • Supports a large number of databases.

Today we will be looking at the installation of PHP on alpine Linux.  A Linux environment will be used in this article (UBUNTU) and it will be used docker to create an alpine container. So make sure to know the basic docker commands.

Similar Reads

Installing PHP on Alpine Linux

Step 1: Pull the alpine image from the docker hub....

Installing PHP

Make sure to upgrade and update the packages, using the apk command....

Contact Us