Skip to content

flywp/dockerfiles

Repository files navigation

Dockerfiles

PHP-FPM

Docker images for PHP-FPM.

Supported Versions

  • PHP 7.4
  • PHP 8.0
  • PHP 8.1
  • PHP 8.2
  • PHP 8.3
  • PHP 8.4
  • PHP 8.5

Getting the images

# PHP 7.4
docker image pull meghsh/php:7.4

# PHP 8.1
docker image pull meghsh/php:8.1

# PHP 8.2
docker image pull meghsh/php:8.2

# PHP 8.3
docker image pull meghsh/php:8.3

# PHP 8.4
docker image pull meghsh/php:8.4

# PHP 8.5
docker image pull meghsh/php:8.5

Using the images

One-off commands

# PHP 7.4
docker run --rm meghsh/php:7.4 bash -c "php -v"

# PHP 8.0
docker run --rm meghsh/php:8.0 bash -c "php -v"

# PHP 8.2
docker run --rm meghsh/php:8.2 bash -c "php -v"

# PHP 8.3
docker run --rm meghsh/php:8.3 bash -c "php -v"

# PHP 8.4
docker run --rm meghsh/php:8.4 bash -c "php -v"

# PHP 8.5
docker run --rm meghsh/php:8.5 bash -c "php -v"

With docker-compose:

services:
  php:
    image: "meghsh/php:7.4"
    volumes:
      - "./app:/var/www/html"

Testing Images

Install Container Structure Test and run the tests:

container-structure-test test --image meghsh/php:8.2 --config php-structure-test.yaml

Node.js (Alpine)

Docker images for Node.js (Alpine variant), including yarn, pnpm, and vite.

Supported Versions

  • Node 18
  • Node 20
  • Node 22
  • Node 24
  • Node 25

Getting the images

# Node 25 (Latest)
docker image pull meghsh/node:25

# Node 22 (LTS)
docker image pull meghsh/node:22

Using the images

One-off commands:

docker run --rm meghsh/node:25 node -v
docker run --rm meghsh/node:25 yarn -v
docker run --rm meghsh/node:25 pnpm -v

With docker-compose:

services:
  node:
    image: "meghsh/node:25"
    volumes:
      - "./app:/var/www/html"
    command: npm run dev

Testing Node.js Images

To verify the Node.js image structure and installed tools:

# Build the image locally (optional, if testing changes)
./node/build.sh

# Run structure tests
container-structure-test test --image meghsh/node:25 --config node-structure-test.yaml

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •