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
- Host: GitHub
- URL: https://github.com/carry0987/docker-lemp
- Owner: carry0987
- License: mit
- Created: 2023-04-18T17:25:57.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-30T03:32:02.000Z (over 1 year ago)
- Last Synced: 2025-03-29T22:44:30.830Z (6 months ago)
- Topics: docker, docker-compose, lemp, nginx, php, redis
- Language: Shell
- Homepage:
- Size: 85 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
#...
```