# Install docker and compose
yum install docker docker-compose -y
# Add user into docker group
usermod -aG docker kimconnect
# Create test file and directory
mkdir -p /var/www/dockerized-lamp/
echo "<?php phpinfo(); ?>" > /var/www/dockerized-lamp/index.php
# Create yaml file
vim /var/www/dockerized-lamp/docker-compose.yml
# Content of yaml file
version: '3'
services:
php-apache:
image: php:7.2-cli
ports:
- 8081:80
volumes:
- ./:/var/www/html
links:
- 'mysql-server'
Categories: