Skip to content

Beninho/docker-images

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Images

🐘 PHP - See on DockerHub

Versions available:

Active

  • 8.0
  • 8.1
  • 8.2
  • 8.3
  • 8.3 with pcov enabled

🪶 Apache

Versions available:

  • 2.4

🛟 HOW TO

Build image docker

docker build `directory` -t `tagname`

Login on docker Hub

docker login

Push tag on dockerhub

docker push `tagname`

Use in your docker-compose.yml

services:
    php:
        image: beninho/php:8.3
        
    web:
        image: beninho/httpd:2.4
        ports:
            - "80:80"