From 1e6c272b046d81ad9d3e41e6f6e5f3d2caa214f0 Mon Sep 17 00:00:00 2001 From: Peter Spiess-Knafl Date: Sat, 4 Feb 2017 09:00:42 +0100 Subject: [PATCH] Remove duplicate ENV variables Since the variables are passed through an .env file they no longer need to passed directly, right? --- example/docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/docker-compose.yml b/example/docker-compose.yml index 56a7231..173521e 100644 --- a/example/docker-compose.yml +++ b/example/docker-compose.yml @@ -36,8 +36,8 @@ services: trap "break;exit" SIGHUP SIGINT SIGTERM sleep 300s while /bin/true; do - DB_USERNAME=root DB_PASSWORD=pwd /usr/local/bin/php /var/www/app/artisan ninja:send-invoices - DB_USERNAME=root DB_PASSWORD=pwd /usr/local/bin/php /var/www/app/artisan ninja:send-reminders + /usr/local/bin/php /var/www/app/artisan ninja:send-invoices + /usr/local/bin/php /var/www/app/artisan ninja:send-reminders sleep 1d done EOF'