Skip to content

Latest commit

 

History

History
56 lines (35 loc) · 613 Bytes

README.md

File metadata and controls

56 lines (35 loc) · 613 Bytes

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"