/docker-nginx-php-centos6

NGINX + PHP-FPM on CentOS 6

Primary LanguageShell

Run NGINX in a container with PHP-FPM on top of CentOS 6

docker build \
	 --tag crobays/nginx-php-centos6 \
	 .

docker run \
	-v ./:/project \
	-e PUBLIC_PATH=/project/public \
	-e TIMEZONE=Etc/UTC \
	-it --rm \
	crobays/nginx-php-centos6