|
@@ -9,20 +9,19 @@ This is a basic LAMP stack environment built using Docker Compose. It consists f
|
9
|
9
|
* MySQL
|
10
|
10
|
* phpMyAdmin
|
11
|
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)
|
|
12
|
+As of now, we have 2 different branches for different PHP versions. Use appropriate branch as per your php version need:
|
|
13
|
+* [5.6.x](https://git.logipro.com/docker/docker-compose-lamp/src/branch/5.6.x)
|
|
14
|
+* [7.2.x](https://git.logipro.com/docker/docker-compose-lamp/src/branch/7.2.x)
|
16
|
15
|
|
17
|
16
|
## Installation
|
18
|
17
|
|
19
|
|
-Clone this repository on your local computer and checkout the appropriate branch e.g. 7.1.x. Run the `docker-compose up -d`.
|
|
18
|
+Clone this repository on your local computer and checkout the appropriate branch e.g. 7.2.x. Run the `docker-compose up -d`.
|
20
|
19
|
|
21
|
20
|
```shell
|
22
|
|
-git clone https://github.com/sprintcube/docker-compose-lamp.git
|
|
21
|
+git clone https://git.logipro.com/docker/docker-compose-lamp.git
|
23
|
22
|
cd docker-compose-lamp/
|
24
|
23
|
git fetch --all
|
25
|
|
-git checkout 7.1.x
|
|
24
|
+git checkout 7.2.x
|
26
|
25
|
docker-compose up -d
|
27
|
26
|
```
|
28
|
27
|
|