symfony on pluie/alpine-apache-php7 ~ 77 MB
3.2K
Extend pluie/alpine-apache-php7.
if /app/$WWW_DIR does not exits then pluie/alpine-symfony-php7 install
the symfony framework with $SYMFONY_VERSION version on the /app directory
SYMFONY_VERSION=3.2 # symfony version
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
/app/$WWW_DIR is the documentRoot.
/app/vhost is your app vhost configuration file (with a serverName directive). by default it use the apache rewrite module to redirect all uri to entry point $WWW_INDEX
chdir to your project directory
$ docker run --name symfony -it --link=mysql:db -v $(pwd):/app pluie/alpine-symfony-php7
or
$ docker run --name symfony -d --link=mysql:db -e HTTP_SERVER_NAME=yourServerName -v $(pwd):/app pluie/alpine-symfony-php7
$ docker exec -it symfony bash
$ docker exec -it symfony php /app/bin/console --ansi
Content type
Image
Digest
Size
27.1 MB
Last updated
about 8 years ago
docker pull pluie/alpine-symfony-php7