Remove duplicate ENV variables

Since the variables are passed through an .env file they no longer need to passed directly, right?
This commit is contained in:
Peter Spiess-Knafl
2017-02-04 09:00:42 +01:00
committed by GitHub
parent 771f647873
commit 1e6c272b04

View File

@@ -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'