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

79 lines
2.6 KiB
Markdown
Raw Permalink Normal View History

2016-08-09 01:08:26 +00:00
# pluie/alpine-symfony
- [index][1]
- [pluie/alpine][2] ( ~ 9 MB ) Alpine/3.5
- [pluie/alpine-apache][3] ( ~ 50 MB ) Apache/2.4.25 Php/5.6.30
- [pluie/alpine-apache-fpm][7] ( ~ 51 MB ) Apache/2.4.25 Php/5.6.30 Fpm
- [pluie/alpine-symfony][6] ( ~ 83 MB ) Symfony2.8 or 3.2
- [pluie/alpine-apache-php7][8] ( ~ 45 MB ) Apache/2.4.25 Php/7.0.16
- [pluie/alpine-symfony-php7][9] ( ~ 77 MB ) Symfony2.8 or 3.2 Php/7.0.16
- [pluie/alpine-mysql][4] ( ~181 MB ) Mysql/5.6 ( MariaDB )
2016-08-09 01:08:26 +00:00
- [docker tips][5]
Extend pluie/alpine-apache-fpm.
2016-08-09 01:08:26 +00:00
if __/app/$WWW_DIR__ does not exits then __pluie/alpine-symfony__ install
the symfony framework with `$SYMFONY_VERSION` version on the `/app` directory
2016-08-09 01:08:26 +00:00
## Image Size
- image ~ 83 MB
2016-08-09 01:08:26 +00:00
## ENV variables
```
2017-01-29 22:44:52 +00:00
SYMFONY_VERSION=3.1 # symfony version
2016-08-09 01:08:26 +00:00
```
### Inherit ENV variables
```
HTTP_SERVER_NAME=symfony.docker # apache ServerName
WWW_DIR=web # DocumentRoot relative to volume
WWW_INDEX=app.php # DirectoryIndex
SHENV_CTX=LOCAL # LOCAL|INT|PROD change context bg color
SHENV_NAME=symfony # container name
SHENV_COLOR=33 # ANSI EXTENDED COLOR CODE
FIX_OWNERSHIP=1
TZ=Europe/Paris # TIMEZONE
```
## Image Volumes
- __/app__ directory is a docker volume bind to your symfony project
- __/etc/php5/fpm.d/__ to customize fpm
2016-08-09 01:08:26 +00:00
## Image Usage
chdir to your project directory
```
2017-01-29 22:44:52 +00:00
$ docker run --name symfony -it --link=mysql:db -v $(pwd):/app pluie/alpine-symfony
2016-08-09 01:08:26 +00:00
```
or
```
2017-01-29 22:44:52 +00:00
$ docker run --name symfony -d --link=mysql:db -e HTTP_SERVER_NAME=yourServerName -v $(pwd):/app pluie/alpine-symfony
2016-08-09 01:08:26 +00:00
```
## Connect to container
```
$ docker exec -it symfony bash
```
## Run the console
```
$ docker exec -it symfony php /app/bin/console --ansi
2016-08-09 01:08:26 +00:00
```
[1]: https://github.com/pluie-org/docker-images
[2]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine
2016-08-13 19:43:47 +00:00
[3]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine-apache
[4]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine-mysql
2016-08-12 02:06:57 +00:00
[7]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine-apache-fpm
2016-08-09 01:08:26 +00:00
[5]: https://github.com/pluie-org/docker-images/blob/master/DOCKER.md
[6]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine-symfony
2017-01-30 01:58:46 +00:00
[8]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine-apache-php7
[9]: https://github.com/pluie-org/docker-images/tree/master/pluie/alpine-symfony-php7