Skip to content
This repository was archived by the owner on Mar 29, 2021. It is now read-only.

Commit 17c46aa

Browse files
committed
Update README.md
1 parent 9335e6f commit 17c46aa

File tree

1 file changed

+8
-25
lines changed

1 file changed

+8
-25
lines changed

README.md

+8-25
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
1-
# ![Docker-LAMP][logo]
2-
Docker-LAMP-PHP5 is a Docker image that includes the Phusion base along with a LAMP stack ([Apache 2.4.7][apache], [MySQL 5.7][mysql] and [PHP 5.6][php]) on Ubuntu 16.04 Xenial, all in one handy container. [phpMyAdmin][phpmyadmin] is also bundled.
1+
![Docker-LAMP](https://cdn.rawgit.com/mattrayner/docker-lamp/831976c022782e592b7e2758464b2a9efe3da042/docs/logo.svg)
2+
3+
Docker-LAMP-PHP5 is a Docker image that includes the Phusion base along with a LAMP stack ([Apache 2.4.7](http://www.apache.org/), [MySQL 5.7](https://www.mysql.com/) and [PHP 5.6](http://php.net/)) on Ubuntu 16.04 Xenial, all in one handy container. [phpMyAdmin](https://www.phpmyadmin.net/) is also bundled.
34

45
**This image is only intended for legacy PHP 5.6 applications, which is [end-of-life](https://www.php.net/supported-versions.php) as of January 2019. Use at your own risk, preferably *not* in production and/or public-facing environments!**
56

67
Based off an old version of [mattrayner/docker-lamp](https://github.com/mattrayner/docker-lamp).
78

89

9-
[![Docker Hub][shield-docker-hub]][info-docker-hub]
10-
[![License][shield-license]][info-license]
11-
12-
1310
## Usage
1411

1512
### Directory structure
@@ -23,7 +20,7 @@ Based off an old version of [mattrayner/docker-lamp](https://github.com/mattrayn
2320
### Starting from command line
2421

2522
```
26-
docker run -p "80:80" -v ${PWD}/app:/app -v ${PWD}/mysql:/var/lib/mysql jakejarvis/lamp-php5:latest
23+
docker run -p "80:80" -v ${PWD}/app:/app -v ${PWD}/mysql:/var/lib/mysql gcr.io/jakejarvis/lamp-php5:latest
2724
```
2825

2926
### Starting with Docker Compose
@@ -32,7 +29,7 @@ docker run -p "80:80" -v ${PWD}/app:/app -v ${PWD}/mysql:/var/lib/mysql jakejarv
3229
version: "3"
3330
services:
3431
lamp:
35-
image: jakejarvis/lamp-php5:latest
32+
image: gcr.io/jakejarvis/lamp-php5:latest
3633
ports:
3734
- "80:80"
3835
volumes:
@@ -43,7 +40,7 @@ services:
4340
### Starting from a Dockerfile
4441

4542
```
46-
FROM jakejarvis/lamp-php5:latest
43+
FROM gcr.io/jakejarvis/lamp-php5:latest
4744
4845
# Your custom commands
4946
@@ -54,24 +51,10 @@ CMD ["/run.sh"]
5451

5552
When you first run the image, you'll see a message showing your `admin` user's password. This is the user you should use in your application. If you need this login later, you can run `docker logs CONTAINER_ID` and you should see it at the top of the log.
5653

57-
You can access [phpMyAdmin][phpmyadmin] at `/phpmyadmin` with the `admin` username and password.
54+
You can access [phpMyAdmin](https://www.phpmyadmin.net/) at `/phpmyadmin` with the `admin` username and password.
5855

5956
By default, the image comes with a `root` MySQL account that has no password. This account is only available locally, i.e. within your application. It is not available from outside your Docker image or through phpMyAdmin.
6057

6158

6259
## License
63-
Docker-LAMP is licensed under the [Apache 2.0 License][info-license].
64-
65-
66-
[logo]: https://cdn.rawgit.com/mattrayner/docker-lamp/831976c022782e592b7e2758464b2a9efe3da042/docs/logo.svg
67-
68-
[apache]: http://www.apache.org/
69-
[mysql]: https://www.mysql.com/
70-
[php]: http://php.net/
71-
[phpmyadmin]: https://www.phpmyadmin.net/
72-
73-
[info-docker-hub]: https://hub.docker.com/r/jakejarvis/lamp-php5
74-
[info-license]: LICENSE.md
75-
76-
[shield-docker-hub]: https://img.shields.io/docker/build/jakejarvis/lamp-php5.svg
77-
[shield-license]: https://img.shields.io/badge/license-Apache%202.0-blue.svg
60+
Docker-LAMP is licensed under the [Apache 2.0 License](LICENSE.md).

0 commit comments

Comments
 (0)