Skip to content

Apache and PHP 5.6 image based on Alpine

Notifications You must be signed in to change notification settings

coderlrv/apache-php56

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

php:5.6-alpine

Apache e PHP 5.6 image baseada no Alpine - 3.8

Exemplos

Usando Dockerfile:

FROM php:5.6-alpine
RUN echo "<?php phpinfo() ?>" > /app/index.php

Executar diretamente:

docker run -it coderlrv/php:5.6-alpine

Usando no docker-compose.yml:

version: '3'

services:
	web:
	    image: coderlrv/php:5.6-alpine
	    ports:
	       - 80:80
	       - 443:443	
	    volumes:
	      - ./:/app/
Run: docker-compose up -d

About

Apache and PHP 5.6 image based on Alpine

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 54.4%
  • Dockerfile 45.6%