Compare commits

...

2 Commits

Author SHA1 Message Date
Samuel Laulhau
a963db2b63 4.5.16 2019-10-28 09:31:53 +01:00
Robin Chan
26a71f7f1f if web starts first without app, nginx will quit 2019-10-13 21:01:40 +02:00
3 changed files with 5 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ RUN { \
# DOWNLOAD AND INSTALL INVOICE NINJA
#####
ENV INVOICENINJA_VERSION 4.5.15
ENV INVOICENINJA_VERSION 4.5.16
RUN curl -o ninja.zip -SL https://download.invoiceninja.com/ninja-v${INVOICENINJA_VERSION}.zip \
&& unzip -q ninja.zip -d /var/www/ \

View File

@@ -36,7 +36,7 @@ RUN { \
# DOWNLOAD AND INSTALL INVOICE NINJA
#####
ENV INVOICENINJA_VERSION 4.5.15
ENV INVOICENINJA_VERSION 4.5.16
RUN curl -o ninja.zip -SL https://download.invoiceninja.com/ninja-v${INVOICENINJA_VERSION}.zip \
&& unzip ninja.zip -d /var/www/ \

View File

@@ -43,6 +43,8 @@ services:
- public:/var/www/app/public
expose: # Expose ports without publishing them to the host machine - theyll only be accessible to linked services.
- "80"
depends_on:
- app
ports: # Delete if you want to use reverse proxy
- 8000:80
networks:
@@ -67,4 +69,4 @@ services:
done
EOF'
networks:
- default
- default