Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 562 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 562 Bytes

Docker simple LEMP stack

A simple docker stack for rapid prototyping.

What's inside

  • nginx:1.17.1-alpine
  • mariadb:10.3
  • php:8.1-fpm

usage

Clone the repo

git clone https://github.com/samayo/docker-simple-lemp
cd docker-simple-lemp

If you want to use mariadb, open .env file and provide a database name, password, user to becreated.

then simply run

docker-compose up -d

If you go to http://localhost you will see a greeting message This page is served from ./src/public/index.html so make sure to put your web files there.