docker-images/pluie/alpine-apache/README.md

89 lines
2.7 KiB
Markdown
Raw Normal View History

2016-07-28 13:56:30 +00:00
# pluie/alpine-apache
- [index][1]
2016-08-09 02:06:36 +00:00
- [pluie/alpine][2] ( < 10 MB ) Alpine/3.4
- [pluie/alpine-apache][3] ( ~ 50 MB ) Apache/2.4.23 Php/5.6.24
2016-08-12 02:06:57 +00:00
- [pluie/alpine-apache-fpm][7] ( ~ 50 MB ) Apache/2.4.23 Php/5.6.24 Fpm
2016-08-09 02:06:36 +00:00
- [pluie/alpine-symfony][6] ( ~ 81 MB )
- [pluie/alpine-mysql][4] ( ~172 MB ) Mysql/5.5.47 ( MariaDB )
- [docker tips][5]
2016-07-29 13:25:39 +00:00
Extend pluie/alpine with __apache 2.4.23__ and __php 5.6.24__
2016-07-28 13:56:30 +00:00
- error log are attached to stdout
- no need port redirection
- you can use env var at container creation : __HTTP_SERVER_NAME__ (default : docker-site.dev ortherwise edit app/vhost later)
- you can still use ever your local http & sql server while your container(s) are running
2016-07-28 15:44:44 +00:00
## Image Size
2016-07-28 13:56:30 +00:00
2016-07-29 15:09:39 +00:00
- image ~ 50 MB
2016-07-28 13:56:30 +00:00
2016-08-09 01:08:26 +00:00
## ENV variables
```
HTTP_SERVER_NAME=apache.docker # apache ServerName
WWW_DIR=www # DocumentRoot relative to volume
WWW_INDEX=index.php # DirectoryIndex
FIX_OWNERSHIP=1 #
```
### Inherit ENV variables
```
SHENV_CTX=LOCAL # LOCAL|INT|PROD change context bg color
SHENV_NAME=Apache # container name
SHENV_COLOR=67 # ANSI EXTENDED COLOR CODE
TZ=Europe/Paris # TIMEZONE
```
2016-07-28 13:56:30 +00:00
2016-07-28 15:44:44 +00:00
## Image Volumes
2016-07-28 13:56:30 +00:00
__/app__ directory is a docker volume bind to your app project (silex/symfony etc)
2016-08-09 01:08:26 +00:00
__/app/$WWW_DIR__ is the documentRoot.
2016-07-28 13:56:30 +00:00
put only your entry point and static files to the documentRoot directory, no your app sources
(__/app__ directory is design for this).
__/app/vhost__ is your app vhost configuration file (with a serverName directive).
2016-08-09 01:08:26 +00:00
by default it use the apache rewrite module to redirect all uri to entry point $WWW_INDEX
2016-07-28 13:56:30 +00:00
```
2016-08-09 02:06:36 +00:00
/app/ # your application directory
2016-07-28 13:56:30 +00:00
|
2016-08-09 02:06:36 +00:00
|---- $WWW_DIR/ # documentRoot
2016-07-28 13:56:30 +00:00
|
2016-08-09 02:06:36 +00:00
|---- vhost # apache app vhost
2016-07-28 13:56:30 +00:00
```
2016-07-28 15:44:44 +00:00
## Image Usage
2016-07-28 13:56:30 +00:00
chdir to your project directory
```
2016-07-29 15:09:39 +00:00
$ docker run --name apache -it --link=mysql:db1 -v $(pwd):/app pluie/alpine-apache
2016-07-28 13:56:30 +00:00
```
or
```
2016-07-29 15:09:39 +00:00
$ docker run --name apache -it --link=mysql:db1 -e HTTP_SERVER_NAME=yourServerName -v $(pwd):/app pluie/alpine-apache
2016-07-28 13:56:30 +00:00
```
## Controling http server
```
$ docker exec -it apache "httpd -k restart"
```
for more commands :
```
$ docker exec -it apache "httpd -h"
```
[1]: https://github.com/pluie-org/docker-images
[2]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine
[3]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine-mysql
[4]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine-apache
2016-08-12 02:06:57 +00:00
[7]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine-apache-fpm
[5]: https://github.com/pluie-org/docker-images/blob/master/DOCKER.md
2016-08-09 01:08:26 +00:00
[6]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine-symfony