Compare commits

..

8 Commits

Author SHA1 Message Date
codedge
d2d03b9b18 Merge pull request #198 from beremaran/master
add puppeteer and add SYS_ADMIN cap
2020-10-15 09:53:26 +02:00
Berke Emrecan Arslan
ea0f3fa981 add puppeteer and add SYS_ADMIN cap 2020-09-18 16:12:31 +03:00
codedge
1d9a8681b2 Merge pull request #193 from codedge/master
Make env vars file support compatible with IN 5
2020-08-19 10:46:01 +02:00
Holger Lösken
f98b3915bd Make env vars file support compatible with IN 5 2020-08-19 10:45:33 +02:00
codedge
8762276c6f Merge pull request #192 from codedge/master
Fix execution of cron daemon
2020-08-19 10:42:15 +02:00
Holger Lösken
afcd9389ed Fix execution of cron daemon 2020-08-19 10:41:40 +02:00
codedge
591c799864 Merge pull request #191 from turbo124/master
Minor fix for docker composer
2020-08-19 08:52:37 +02:00
David Bomba
4c9c5ddd95 Minor fix for docker composer 2020-08-19 10:33:40 +10:00
4 changed files with 31 additions and 8 deletions

View File

@@ -67,9 +67,23 @@ RUN set -eux; \
COPY ./config/php/php.ini /usr/local/etc/php/php.ini
COPY ./config/php/php-cli.ini /usr/local/etc/php/php-cli.ini
## Set up the cronjob
RUN echo "* * * * * run-parts /etc/periodic/1min" >> /etc/crontabs/root
COPY ./config/cron/cronjob_v5.sh /etc/periodic/1min/invoiceninja_cronjob
RUN apk add --no-cache \
chromium \
nss \
freetype \
freetype-dev \
harfbuzz \
ca-certificates \
ttf-freefont \
nodejs \
yarn
# Tell Puppeteer to skip installing Chrome. We'll be using the installed package.
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true \
PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser
# Puppeteer v1.19.0 works with Chromium 77.
RUN yarn add puppeteer@1.19.0
## Separate user
ENV INVOICENINJA_USER=invoiceninja
@@ -89,9 +103,15 @@ RUN addgroup -S "$INVOICENINJA_USER" && \
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer; \
composer global require hirak/prestissimo;
## Set up the cronjob and run cron daemon
RUN echo "* * * * * run-parts /etc/periodic/1min" >> /etc/crontabs/root
COPY ./config/cron/cronjob_v5.sh /etc/periodic/1min/invoiceninja_cronjob
RUN chown $INVOICENINJA_USER /etc/periodic/1min/invoiceninja_cronjob && \
crond -l 2 -b
USER $INVOICENINJA_USER
RUN composer install --no-dev --no-suggest --no-progress
RUN composer install --no-dev --no-suggest --no-progress --quiet
# Override the environment settings from projects .env file
ENV APP_ENV production

0
config/cron/cronjob_v5.sh Normal file → Executable file
View File

View File

@@ -30,6 +30,8 @@ services:
app:
image: invoiceninja/invoiceninja:5
restart: always
cap_add:
- SYS_ADMIN
environment:
- APP_URL=https://localhost
- APP_KEY=<INSERT THE GENERATED APPLICATION KEY HERE>
@@ -55,7 +57,7 @@ services:
- MYSQL_ROOT_PASSWORD=ninjaAdm1nPassword
- MYSQL_USER=ninja
- MYSQL_PASSWORD=ninja
- MYSQL_DATABASE=db-ninja-01
- MYSQL_DATABASE=ninja
volumes:
- mysql-data:/var/lib/mysql:rw
# you may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data!

View File

@@ -90,7 +90,11 @@ file_env 'APP_KEY'
file_env 'API_SECRET'
file_env 'CLOUDFLARE_API_KEY'
file_env 'DB_USERNAME'
file_env 'DB_USERNAME1'
file_env 'DB_USERNAME2'
file_env 'DB_PASSWORD'
file_env 'DB_PASSWORD1'
file_env 'DB_PASSWORD2'
file_env 'MAIL_USERNAME'
file_env 'MAIL_PASSWORD'
file_env 'MAILGUN_SECRET'
@@ -101,7 +105,4 @@ file_env 'S3_SECRET'
php artisan config:cache
php artisan optimize
# Start the cron daemon in background
crond -l 2 -b
exec docker-php-entrypoint "$@"