A simple PHP8 dockerfile adapted to laravel 8 on a alpine based docker container
Contains:
There are 2 importante setups that must be done:
/app folder.Start the container using docker run
docker run -w="./:/app" -p 8080:80 cauehqueiroz/php8-laravel
Or use it on a Docker Compose file:
version: '3'
services:
strider-webserver:
container_name: strider_webserver
image: cauehqueiroz/php8-laravel
volumes:
- ./:/app
ports:
- 8080:80
Content type
Image
Digest
Size
69.2 MB
Last updated
over 4 years ago
docker pull cauehqueiroz/php8-laravel