Compare commits

...

4 Commits
2.5.2.2 ... 2.6

Author SHA1 Message Date
Sam
8a28648b90 2.6 2016-07-12 08:57:47 +02:00
Sam
96266d42c6 add note about peristent data 2016-06-06 09:30:30 +02:00
Sam
5533d5a58a Merge branch 'master' of github.com:invoiceninja/dockerfiles 2016-05-24 14:57:26 +02:00
Samuel Laulhau
951fc81b3e no debug by default
fix #7
2016-05-22 23:58:18 +02:00
2 changed files with 4 additions and 2 deletions

View File

@@ -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.5.2.2
ENV INVOICENINJA_VERSION 2.6
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/ \
@@ -45,7 +45,7 @@ ENV DB_HOST mysql
ENV DB_DATABASE ninja
ENV APP_KEY SomeRandomString
ENV LOG errorlog
ENV APP_DEBUG 1
ENV APP_DEBUG 0
#use to be mounted into nginx for exemple

View File

@@ -27,3 +27,5 @@ web:
ports:
- 80
```
To make your data persistant, you have to mount `/var/www/app/public/logo` and `/var/www/app/storage`.