From 28a2d8e072a012871d9915c30f18154d872b4578 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Sun, 24 Jul 2016 23:11:33 +0300 Subject: [PATCH] delete the .env file making the central editing place is the docker-compose.yml file --- .env | 2 -- docker-compose.yml | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) delete mode 100644 .env diff --git a/.env b/.env deleted file mode 100644 index 43554f33..00000000 --- a/.env +++ /dev/null @@ -1,2 +0,0 @@ -INSTALL_PRESTISSIMO=false -PHP_PROCESS_MANAGER=php-fpm diff --git a/docker-compose.yml b/docker-compose.yml index 4f225f2f..cb37ea9f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ services: build: context: ./nginx args: - - PHP_UPSTREAM=${PHP_PROCESS_MANAGER} + - PHP_UPSTREAM=php-fpm volumes_from: - volumes_source volumes: @@ -17,7 +17,7 @@ services: - "80:80" - "443:443" links: - - ${PHP_PROCESS_MANAGER} + - php-fpm ### PHP-FPM Container #######################################