Compare commits

..

13 Commits
2.8.2 ... 3.0.0

Author SHA1 Message Date
Sam
27bdd0ec1a 3.0.0 2017-01-24 09:00:36 +01:00
Sam
e53f60dad8 2.9.5 2017-01-14 11:33:39 +01:00
Sam
b0162488bd 2.9.4 2017-01-12 14:52:50 +01:00
Samuel Laulhau
7caf8c9ea8 use same env inside the app then in docker command 2017-01-11 10:09:55 +01:00
Samuel Laulhau
230856e526 Merge pull request #28 from cinemast/patch-1
Enable additional SMTP env variables
2017-01-11 10:03:34 +01:00
Sam
1e2bb5744f 2.9.3 2017-01-04 12:16:52 +01:00
Sam
54004f3038 2.9.2 2017-01-03 13:53:29 +01:00
Peter Spiess-Knafl
9e8717d6d8 Enable additional SMTP env variables 2017-01-02 14:07:58 +01:00
Sam
5ba03e8ccf 2.9.1 2016-12-20 18:31:51 +01:00
Samuel Laulhau
dd9fea1a33 Merge pull request #25 from cinemast/master
Use php7.0 instead of latest. (Closes #23)
2016-12-19 09:49:18 +01:00
Samuel Laulhau
4f79c894e6 2.9.0 2016-12-15 17:42:49 +01:00
Samuel Laulhau
5820915a50 2.9 2016-12-15 17:19:29 +01:00
Peter Spiess-Knafl
7c1a352676 Use php7.0 instead of latest. (Closes #23) 2016-12-09 13:40:07 +01:00
2 changed files with 10 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
FROM php:fpm
FROM php:7.0-fpm
MAINTAINER Samuel Laulhau <sam@lalop.co>
@@ -25,7 +25,7 @@ RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local
# DOWNLOAD AND INSTALL INVOICE NINJA
#####
ENV INVOICENINJA_VERSION 2.8.2
ENV INVOICENINJA_VERSION 3.0.0
RUN curl -o invoiceninja.tar.gz -SL https://github.com/hillelcoren/invoice-ninja/archive/v${INVOICENINJA_VERSION}.tar.gz \
&& tar -xzf invoiceninja.tar.gz -C /var/www/ \

View File

@@ -11,6 +11,14 @@ fi
echo "DB_USERNAME=$DB_USERNAME" >> .env
echo "DB_PASSWORD=$DB_PASSWORD" >> .env
echo "DB_HOST=$DB_HOST" >> .env
echo "MAIL_DRIVER=$MAIL_DRIVER" >> .env
echo "MAIL_PORT=$MAIL_PORT" >> .env
echo "MAIL_HOST=$MAIL_HOST" >> .env
echo "MAIL_USERNAME=$MAIL_USERNAME" >> .env
echo "MAIL_PASSWORD=$MAIL_PASSWORD" >> .env
echo "MAIL_FROM_ADDRESS=$MAIL_FROM_ADDRESS" >> .env
echo "MAIL_FROM_NAME=$MAIL_FROM_NAME" >> .env
if [ ! -d /var/www/app/storage ]; then
cp -Rp /var/www/app/docker-backup-storage /var/www/app/storage