https://github.com/irfanbaigse/docker-lemp
Docker LEMP server for web developers
https://github.com/irfanbaigse/docker-lemp
docker-compose docker-lemp dockerfiles lemp
Last synced: 27 days ago
JSON representation
Docker LEMP server for web developers
- Host: GitHub
- URL: https://github.com/irfanbaigse/docker-lemp
- Owner: irfanbaigse
- Created: 2017-08-25T17:19:53.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-26T14:24:57.000Z (almost 9 years ago)
- Last Synced: 2025-08-17T01:32:47.801Z (10 months ago)
- Topics: docker-compose, docker-lemp, dockerfiles, lemp
- Language: Shell
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-lemp
About docker-Lemp, LEMP stack is a group of open source software to get web servers up and running.
The acronym stands for Linux, nginx (pronounced Engine x), MySQL, and PHP.
Here is how to install the rest.
# Setup
Clone the repo
```
git clone https://github.com/irfanbaigdev/docker-lemp
```
Run #1
```
docker-compose build
```
Run #2
Build services
```
docker-compose up -d
```
Run #3
SSH login to php container
```
docker exec -t -i lemp_php /bin/bash
```
Run #4
SSH login to mysql container
```
docker exec -t -i lemp_mysql /bin/bash
```