https://github.com/tuki0918/docker_mysql_php_run
https://github.com/tuki0918/docker_mysql_php_run
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tuki0918/docker_mysql_php_run
- Owner: tuki0918
- Created: 2015-11-01T10:35:53.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-01T13:38:15.000Z (over 9 years ago)
- Last Synced: 2025-03-10T16:49:13.295Z (3 months ago)
- Homepage:
- Size: 121 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
##### 準備
----
```
docker pull php:5.6-apache
docker pull php:tag
docker pull -a php
```##### Docker Image Tag
----
+ https://hub.docker.com/_/php/
+ 5.3.29-apache
+ 5.4-apache
+ 5.5-apache
+ 5.6-apache
+ 7.0-apache##### 起動
----
+ 事前にDBを起動しておく
+ ref: https://github.com/tuki0918/docker_mysql_run
```
docker run -itd -P -v $(pwd):/var/www/html --link some-mysql:db --name php5.6-apache php:5.6-apache
```