|
@@ -1,2 +1,33 @@
|
1
|
|
-# docker-compose-lamp
|
|
1
|
+# Logipro - LAMP stack built with Docker Compose
|
2
|
2
|
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+This is a basic LAMP stack environment built using Docker Compose. It consists following:
|
|
6
|
+
|
|
7
|
+* PHP
|
|
8
|
+* Apache
|
|
9
|
+* MySQL
|
|
10
|
+* phpMyAdmin
|
|
11
|
+
|
|
12
|
+As of now, we have 3 different branches for different PHP versions. Use appropriate branch as per your php version need:
|
|
13
|
+* [5.6.x](https://github.com/sprintcube/docker-compose-lamp/tree/5.6.x)
|
|
14
|
+* [7.1.x](https://github.com/sprintcube/docker-compose-lamp/tree/7.1.x)
|
|
15
|
+* [7.2.x](https://github.com/sprintcube/docker-compose-lamp/tree/7.2.x)
|
|
16
|
+
|
|
17
|
+## Installation
|
|
18
|
+
|
|
19
|
+Clone this repository on your local computer and checkout the appropriate branch e.g. 7.1.x. Run the `docker-compose up -d`.
|
|
20
|
+
|
|
21
|
+```shell
|
|
22
|
+git clone https://github.com/sprintcube/docker-compose-lamp.git
|
|
23
|
+cd docker-compose-lamp/
|
|
24
|
+git fetch --all
|
|
25
|
+git checkout 7.1.x
|
|
26
|
+docker-compose up -d
|
|
27
|
+```
|
|
28
|
+
|
|
29
|
+Your LAMP stack is now ready!! You can access it via `http://localhost`.
|
|
30
|
+
|
|
31
|
+## Configuration and Usage
|
|
32
|
+
|
|
33
|
+Please read from appropriate version branch.
|