An open API service indexing awesome lists of open source software.

https://github.com/carry0987/docker-lemp

A LEMP fullstack with latest release of PHP 8 and Composer, MariaDB, Nginx, PHPMyAdmin, Redis
https://github.com/carry0987/docker-lemp

docker docker-compose lemp nginx php redis

Last synced: 4 months ago
JSON representation

A LEMP fullstack with latest release of PHP 8 and Composer, MariaDB, Nginx, PHPMyAdmin, Redis

Awesome Lists containing this project

README

          

# Docker-LEMP
A LEMP fullstack with latest release of 8.2.13 and Composer, MariaDB, Mroonga, Nginx, PHPMyAdmin, Redis

## Usage
1. Clone this repository
2. Run `docker-compose up -d`
3. Go to `http://localhost` to see the Nginx welcome page
4. Go to `http://localhost:8080` to see the PHPMyAdmin page

## Configuration
Note: If you are running this LEMP under a reverse proxy, you can remove the port mapping
`docker-compose.yml`
```yaml
#...
nginx:
#...
ports:
- 80:80
redis:
#...
ports:
- 6379:6379
phpmyadmin:
#...
ports:
- 8080:80
#...
```