mirror of
https://github.com/invoiceninja/dockerfiles.git
synced 2026-01-06 22:47:26 +01:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4ca67bce5f |
@@ -1,24 +0,0 @@
|
|||||||
# EditorConfig is awesome: https://EditorConfig.org
|
|
||||||
|
|
||||||
# top-most EditorConfig file
|
|
||||||
root = true
|
|
||||||
|
|
||||||
# Unix-style newlines with a newline ending every file
|
|
||||||
[*]
|
|
||||||
end_of_line = lf
|
|
||||||
insert_final_newline = true
|
|
||||||
|
|
||||||
# Matches multiple files with brace expansion notation
|
|
||||||
# Set default charset
|
|
||||||
[*.*]
|
|
||||||
charset = utf-8
|
|
||||||
|
|
||||||
# Tab indentation (no size specified)
|
|
||||||
[Makefile]
|
|
||||||
indent_style = tab
|
|
||||||
|
|
||||||
# Matches the files *.yml
|
|
||||||
[*.yml]
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 2
|
|
||||||
|
|
||||||
58
.github/ISSUE_TEMPLATE/bug_report.md
vendored
58
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@@ -1,58 +0,0 @@
|
|||||||
---
|
|
||||||
name: Bug report
|
|
||||||
about: Create a report to help us improve
|
|
||||||
title: ''
|
|
||||||
labels: ''
|
|
||||||
assignees: ''
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
<!--
|
|
||||||
*** Before creating an issue ***
|
|
||||||
*** Be sure the issue isn't yet reported here or dicussed on stackoverflow ***
|
|
||||||
-->
|
|
||||||
|
|
||||||
**Setup information**
|
|
||||||
<!-- Remove accordingly -->
|
|
||||||
docker run / docker-compose / Helm
|
|
||||||
|
|
||||||
**Describe the bug**
|
|
||||||
A clear and concise description of what the bug is.
|
|
||||||
|
|
||||||
**To reproduce**
|
|
||||||
Steps to reproduce the behavior:
|
|
||||||
1. Go to '...'
|
|
||||||
2. Click on '....'
|
|
||||||
3. Scroll down to '....'
|
|
||||||
4. See error
|
|
||||||
|
|
||||||
**Expected behavior**
|
|
||||||
A clear and concise description of what you expected to happen.
|
|
||||||
|
|
||||||
**Screenshots/logs**
|
|
||||||
If applicable, add screenshots to help explain your problem.
|
|
||||||
|
|
||||||
<!-- Did you check the logs? If any Error is present there please copy/paste it below -->
|
|
||||||
```
|
|
||||||
Any Error that sucks
|
|
||||||
```
|
|
||||||
|
|
||||||
**Docker/Kubernetes/Helm**:
|
|
||||||
- Output of `docker version`:
|
|
||||||
```
|
|
||||||
(paste your output here)
|
|
||||||
```
|
|
||||||
<!-- Additional info if using helm on k8s, add the info below -->
|
|
||||||
<!-- Delete this block if not applicable -->
|
|
||||||
- Output of `helm version`:
|
|
||||||
```
|
|
||||||
(paste your output here)
|
|
||||||
```
|
|
||||||
- Output of `kubectl version`:
|
|
||||||
```
|
|
||||||
(paste your output here)
|
|
||||||
```
|
|
||||||
<!-- End Additional info if using helm on k8s -->
|
|
||||||
|
|
||||||
**Additional context**
|
|
||||||
Add any other context about the problem here.
|
|
||||||
6
.github/ct-install.yaml
vendored
6
.github/ct-install.yaml
vendored
@@ -1,6 +0,0 @@
|
|||||||
chart-dirs:
|
|
||||||
- charts
|
|
||||||
chart-repos:
|
|
||||||
- bitnami=https://charts.bitnami.com/bitnami
|
|
||||||
check-version-increment: true
|
|
||||||
debug: false
|
|
||||||
9
.github/ct-lint.yaml
vendored
9
.github/ct-lint.yaml
vendored
@@ -1,9 +0,0 @@
|
|||||||
chart-dirs:
|
|
||||||
- charts
|
|
||||||
chart-repos:
|
|
||||||
- bitnami=https://charts.bitnami.com/bitnami
|
|
||||||
check-version-increment: true
|
|
||||||
debug: false
|
|
||||||
validate-chart-schema: true
|
|
||||||
validate-maintainers: true
|
|
||||||
validate-yaml: true
|
|
||||||
21
.github/workflows/auto-close-issues.yml
vendored
21
.github/workflows/auto-close-issues.yml
vendored
@@ -1,21 +0,0 @@
|
|||||||
name: Close stale issues after 5 days
|
|
||||||
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
# Run this workflow every day at midnight
|
|
||||||
- cron: '0 0 * * *'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
close-stale-issues:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Close stale issues
|
|
||||||
uses: actions/stale@v7
|
|
||||||
with:
|
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
stale-issue-message: "This issue has been automatically closed due to inactivity for 5 days."
|
|
||||||
days-before-stale: 4 # Number of days before marking an issue as stale
|
|
||||||
days-before-close: 1 # Number of days after being marked stale before closing
|
|
||||||
stale-label: "stale" # Label to add to stale issues
|
|
||||||
exempt-issue-labels: "keep-open,triage,bug" # Prevents issues with this label from being closed
|
|
||||||
only-issues: true # Only affects issues, not pull requests
|
|
||||||
38
.github/workflows/build-image-debian.yaml
vendored
38
.github/workflows/build-image-debian.yaml
vendored
@@ -1,38 +0,0 @@
|
|||||||
name: Build Debian Container Image
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
paths:
|
|
||||||
- "debian/**"
|
|
||||||
push:
|
|
||||||
paths:
|
|
||||||
- "debian/**"
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
docker:
|
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Set up QEMU
|
|
||||||
uses: docker/setup-qemu-action@v3
|
|
||||||
with:
|
|
||||||
platforms: all
|
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
id: buildx
|
|
||||||
uses: docker/setup-buildx-action@v3
|
|
||||||
|
|
||||||
- name: Build
|
|
||||||
id: docker_build
|
|
||||||
uses: docker/build-push-action@v5
|
|
||||||
with:
|
|
||||||
context: debian
|
|
||||||
file: debian/Dockerfile
|
|
||||||
load: true
|
|
||||||
tags: invoiceninja/invoiceninja-debian:test
|
|
||||||
cache-from: type=gha
|
|
||||||
cache-to: type=gha,mode=max
|
|
||||||
75
.github/workflows/publish-image.yaml
vendored
75
.github/workflows/publish-image.yaml
vendored
@@ -1,75 +0,0 @@
|
|||||||
name: Publish Debian Container Images
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags-ignore:
|
|
||||||
- "invoiceninja-*"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
docker:
|
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- image: invoiceninja/invoiceninja-debian
|
|
||||||
context: ./debian
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4 # Updated from v2
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Prepare
|
|
||||||
id: prep
|
|
||||||
run: |
|
|
||||||
DOCKER_IMAGE=${{ matrix.image }}
|
|
||||||
VERSION=edge
|
|
||||||
if [[ $GITHUB_REF == refs/tags/* ]]; then
|
|
||||||
VERSION=${GITHUB_REF#refs/tags/}
|
|
||||||
fi
|
|
||||||
TAGS="${DOCKER_IMAGE}:${VERSION}"
|
|
||||||
MAJOR="$(echo "${VERSION}" | cut -d. -f1)"
|
|
||||||
MINOR="$(echo "${VERSION}" | cut -d. -f2)"
|
|
||||||
TAGS="$TAGS,${DOCKER_IMAGE}:${MAJOR},${DOCKER_IMAGE}:${MAJOR}.${MINOR}"
|
|
||||||
|
|
||||||
# Debug output
|
|
||||||
echo "Current version: ${VERSION}"
|
|
||||||
echo "Version pattern check: $([[ $VERSION =~ ^5\.[0-9]{1,3}\.[0-9]{1,3}$ ]] && echo "matches" || echo "doesn't match")"
|
|
||||||
|
|
||||||
TAGS="$TAGS,${DOCKER_IMAGE}:latest"
|
|
||||||
|
|
||||||
echo "tags=${TAGS}" >> $GITHUB_OUTPUT # Updated output syntax
|
|
||||||
echo "version=${VERSION}" >> $GITHUB_OUTPUT
|
|
||||||
echo "major=${MAJOR}" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Set up QEMU
|
|
||||||
uses: docker/setup-qemu-action@v3 # Updated from v1
|
|
||||||
with:
|
|
||||||
platforms: all
|
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
id: buildx
|
|
||||||
uses: docker/setup-buildx-action@v3 # Updated from v1
|
|
||||||
|
|
||||||
- name: Login to DockerHub
|
|
||||||
if: github.event_name != 'pull_request'
|
|
||||||
uses: docker/login-action@v3 # Updated from v1
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
||||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
||||||
|
|
||||||
- name: Build and push
|
|
||||||
id: docker_build
|
|
||||||
uses: docker/build-push-action@v5 # Updated from v2
|
|
||||||
with:
|
|
||||||
context: ${{ matrix.context }}
|
|
||||||
build-args: INVOICENINJA_VERSION=${{ steps.prep.outputs.version }}
|
|
||||||
platforms: linux/amd64,linux/arm64
|
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
|
||||||
tags: ${{ steps.prep.outputs.tags }}
|
|
||||||
cache-from: type=gha # Updated cache type
|
|
||||||
cache-to: type=gha,mode=max
|
|
||||||
|
|
||||||
- name: Image digest
|
|
||||||
run: echo ${{ steps.docker_build.outputs.digest }}
|
|
||||||
34
.github/workflows/release-chart.yaml
vendored
34
.github/workflows/release-chart.yaml
vendored
@@ -1,34 +0,0 @@
|
|||||||
name: Release Charts
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
paths:
|
|
||||||
- "charts/**"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
release:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Configure Git
|
|
||||||
run: |
|
|
||||||
git config user.name "$GITHUB_ACTOR"
|
|
||||||
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
|
||||||
|
|
||||||
- name: Set up Helm
|
|
||||||
uses: azure/setup-helm@v3
|
|
||||||
|
|
||||||
- name: Add Helm repos
|
|
||||||
run: |
|
|
||||||
helm repo add bitnami https://charts.bitnami.com/bitnami
|
|
||||||
|
|
||||||
- name: Run chart-releaser
|
|
||||||
uses: helm/chart-releaser-action@v1.4.1
|
|
||||||
env:
|
|
||||||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
||||||
111
.github/workflows/test-charts.yaml
vendored
111
.github/workflows/test-charts.yaml
vendored
@@ -1,111 +0,0 @@
|
|||||||
name: Lint and Test Charts
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
paths:
|
|
||||||
- "charts/**"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
lint-chart:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
outputs:
|
|
||||||
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Set up Helm
|
|
||||||
uses: azure/setup-helm@v3
|
|
||||||
|
|
||||||
- uses: actions/setup-python@v4
|
|
||||||
with:
|
|
||||||
python-version: "3.9"
|
|
||||||
check-latest: true
|
|
||||||
|
|
||||||
- name: Set up chart-testing
|
|
||||||
uses: helm/chart-testing-action@v2.3.1
|
|
||||||
|
|
||||||
- name: Run chart-testing (list-changed)
|
|
||||||
id: list-changed
|
|
||||||
run: |
|
|
||||||
echo "::set-output name=changed::[\"$(ct list-changed --config .github/ct-lint.yaml)\"]"
|
|
||||||
|
|
||||||
- name: Parse list-changed
|
|
||||||
id: set-matrix
|
|
||||||
env:
|
|
||||||
CHANGED: ${{ steps.list-changed.outputs.changed }}
|
|
||||||
run: |
|
|
||||||
echo "::set-output name=matrix::$(echo "${CHANGED//\\n/\",\"}")"
|
|
||||||
|
|
||||||
- name: Run chart-testing (lint)
|
|
||||||
run: ct lint --config .github/ct-lint.yaml
|
|
||||||
|
|
||||||
kubeconform-chart:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs:
|
|
||||||
- lint-chart
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
chart: ${{ fromJson(needs.lint-chart.outputs.matrix) }}
|
|
||||||
k8s:
|
|
||||||
- "1.25.5"
|
|
||||||
- "1.24.9"
|
|
||||||
- "1.23.15"
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Update Helm depdendencies
|
|
||||||
env:
|
|
||||||
CHART_DIR: ${{ matrix.chart }}
|
|
||||||
run: |
|
|
||||||
helm dependency update "${CHART_DIR}"
|
|
||||||
mkdir tmp
|
|
||||||
helm template "${CHART_DIR}" > tmp/combined.yaml
|
|
||||||
|
|
||||||
- uses: yokawasa/action-setup-kube-tools@v0.9.2
|
|
||||||
with:
|
|
||||||
setup-tools: |
|
|
||||||
kubeconform
|
|
||||||
|
|
||||||
- name: Run kubeconform
|
|
||||||
if: ${{ matrix.k8s }}
|
|
||||||
run: kubeconform -kubernetes-version ${{ matrix.k8s }} tmp/combined.yaml
|
|
||||||
|
|
||||||
install-chart:
|
|
||||||
name: install-chart
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs:
|
|
||||||
- lint-chart
|
|
||||||
- kubeconform-chart
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
k8s:
|
|
||||||
- v1.25.3
|
|
||||||
- v1.24.7
|
|
||||||
- v1.23.13
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Create kind ${{ matrix.k8s }} cluster
|
|
||||||
uses: helm/kind-action@v1.4.0
|
|
||||||
with:
|
|
||||||
node_image: kindest/node:${{ matrix.k8s }}
|
|
||||||
|
|
||||||
- uses: actions/setup-python@v4
|
|
||||||
with:
|
|
||||||
python-version: "3.9"
|
|
||||||
check-latest: true
|
|
||||||
|
|
||||||
- name: Set up chart-testing
|
|
||||||
uses: helm/chart-testing-action@v2.3.1
|
|
||||||
|
|
||||||
- name: Run chart-testing (install)
|
|
||||||
run: ct install --config .github/ct-install.yaml
|
|
||||||
14
.gitignore
vendored
14
.gitignore
vendored
@@ -1,14 +0,0 @@
|
|||||||
# OS files
|
|
||||||
.DS_Store
|
|
||||||
.DS_Store?
|
|
||||||
._*
|
|
||||||
.Spotlight-V100
|
|
||||||
.Trashes
|
|
||||||
ehthumbs.db
|
|
||||||
Thumbs.db
|
|
||||||
|
|
||||||
# Helm
|
|
||||||
charts/**/charts/
|
|
||||||
|
|
||||||
# Compose filesystem
|
|
||||||
/docker
|
|
||||||
@@ -1,76 +0,0 @@
|
|||||||
# Contributor Covenant Code of Conduct
|
|
||||||
|
|
||||||
## Our Pledge
|
|
||||||
|
|
||||||
In the interest of fostering an open and welcoming environment, we as
|
|
||||||
contributors and maintainers pledge to making participation in our project and
|
|
||||||
our community a harassment-free experience for everyone, regardless of age, body
|
|
||||||
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
|
||||||
level of experience, education, socio-economic status, nationality, personal
|
|
||||||
appearance, race, religion, or sexual identity and orientation.
|
|
||||||
|
|
||||||
## Our Standards
|
|
||||||
|
|
||||||
Examples of behavior that contributes to creating a positive environment
|
|
||||||
include:
|
|
||||||
|
|
||||||
* Using welcoming and inclusive language
|
|
||||||
* Being respectful of differing viewpoints and experiences
|
|
||||||
* Gracefully accepting constructive criticism
|
|
||||||
* Focusing on what is best for the community
|
|
||||||
* Showing empathy towards other community members
|
|
||||||
|
|
||||||
Examples of unacceptable behavior by participants include:
|
|
||||||
|
|
||||||
* The use of sexualized language or imagery and unwelcome sexual attention or
|
|
||||||
advances
|
|
||||||
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
||||||
* Public or private harassment
|
|
||||||
* Publishing others' private information, such as a physical or electronic
|
|
||||||
address, without explicit permission
|
|
||||||
* Other conduct which could reasonably be considered inappropriate in a
|
|
||||||
professional setting
|
|
||||||
|
|
||||||
## Our Responsibilities
|
|
||||||
|
|
||||||
Project maintainers are responsible for clarifying the standards of acceptable
|
|
||||||
behavior and are expected to take appropriate and fair corrective action in
|
|
||||||
response to any instances of unacceptable behavior.
|
|
||||||
|
|
||||||
Project maintainers have the right and responsibility to remove, edit, or
|
|
||||||
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
||||||
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
||||||
permanently any contributor for other behaviors that they deem inappropriate,
|
|
||||||
threatening, offensive, or harmful.
|
|
||||||
|
|
||||||
## Scope
|
|
||||||
|
|
||||||
This Code of Conduct applies both within project spaces and in public spaces
|
|
||||||
when an individual is representing the project or its community. Examples of
|
|
||||||
representing a project or community include using an official project e-mail
|
|
||||||
address, posting via an official social media account, or acting as an appointed
|
|
||||||
representative at an online or offline event. Representation of a project may be
|
|
||||||
further defined and clarified by project maintainers.
|
|
||||||
|
|
||||||
## Enforcement
|
|
||||||
|
|
||||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
||||||
reported by contacting the project team at contact@invoiceninja.com. All
|
|
||||||
complaints will be reviewed and investigated and will result in a response that
|
|
||||||
is deemed necessary and appropriate to the circumstances. The project team is
|
|
||||||
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
||||||
Further details of specific enforcement policies may be posted separately.
|
|
||||||
|
|
||||||
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
||||||
faith may face temporary or permanent repercussions as determined by other
|
|
||||||
members of the project's leadership.
|
|
||||||
|
|
||||||
## Attribution
|
|
||||||
|
|
||||||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
|
||||||
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
|
||||||
|
|
||||||
[homepage]: https://www.contributor-covenant.org
|
|
||||||
|
|
||||||
For answers to common questions about this code of conduct, see
|
|
||||||
https://www.contributor-covenant.org/faq
|
|
||||||
86
Dockerfile
Normal file
86
Dockerfile
Normal file
@@ -0,0 +1,86 @@
|
|||||||
|
ARG PHP_IMAGE_TAG=7.2-fpm
|
||||||
|
FROM php:${PHP_IMAGE_TAG}
|
||||||
|
|
||||||
|
LABEL maintainer="Samuel Laulhau <sam@lalop.co>"
|
||||||
|
|
||||||
|
#####
|
||||||
|
# SYSTEM REQUIREMENT
|
||||||
|
#####
|
||||||
|
ENV BUILD_DEPS \
|
||||||
|
zlib1g-dev \
|
||||||
|
git \
|
||||||
|
libgmp-dev \
|
||||||
|
unzip \
|
||||||
|
libfreetype6-dev \
|
||||||
|
libjpeg62-turbo-dev \
|
||||||
|
libpng-dev \
|
||||||
|
build-essential \
|
||||||
|
chrpath \
|
||||||
|
libssl-dev \
|
||||||
|
libxft-dev \
|
||||||
|
libfreetype6 \
|
||||||
|
libfontconfig1 \
|
||||||
|
libfontconfig1-dev
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y --no-install-recommends $BUILD_DEPS \
|
||||||
|
&& ln -s /usr/include/x86_64-linux-gnu/gmp.h /usr/local/include/ \
|
||||||
|
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
|
||||||
|
&& docker-php-ext-configure gmp \
|
||||||
|
&& docker-php-ext-install iconv mbstring pdo pdo_mysql zip gd gmp opcache
|
||||||
|
|
||||||
|
ENV PHANTOMJS phantomjs-2.1.1-linux-x86_64
|
||||||
|
# Install PHANTOMJS
|
||||||
|
RUN curl -o ${PHANTOMJS}.tar.bz2 -SL https://bitbucket.org/ariya/phantomjs/downloads/${PHANTOMJS}.tar.bz2 \
|
||||||
|
&& tar xvjf ${PHANTOMJS}.tar.bz2 \
|
||||||
|
&& rm ${PHANTOMJS}.tar.bz2 \
|
||||||
|
&& mv ${PHANTOMJS} /usr/local/share \
|
||||||
|
&& ln -sf /usr/local/share/${PHANTOMJS}/bin/phantomjs /usr/local/bin \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# set recommended PHP.ini settings
|
||||||
|
# see https://secure.php.net/manual/en/opcache.installation.php
|
||||||
|
RUN { \
|
||||||
|
echo 'opcache.memory_consumption=128'; \
|
||||||
|
echo 'opcache.interned_strings_buffer=8'; \
|
||||||
|
echo 'opcache.max_accelerated_files=4000'; \
|
||||||
|
echo 'opcache.revalidate_freq=60'; \
|
||||||
|
echo 'opcache.fast_shutdown=1'; \
|
||||||
|
echo 'opcache.enable_cli=1'; \
|
||||||
|
} > /usr/local/etc/php/conf.d/opcache-recommended.ini
|
||||||
|
|
||||||
|
#####
|
||||||
|
# DOWNLOAD AND INSTALL INVOICE NINJA
|
||||||
|
#####
|
||||||
|
|
||||||
|
ENV INVOICENINJA_VERSION 4.5.14
|
||||||
|
|
||||||
|
RUN curl -o ninja.zip -SL https://download.invoiceninja.com/ninja-v${INVOICENINJA_VERSION}.zip \
|
||||||
|
&& unzip ninja.zip -d /var/www/ \
|
||||||
|
&& rm ninja.zip \
|
||||||
|
&& mv /var/www/ninja /var/www/app \
|
||||||
|
&& mv /var/www/app/storage /var/www/app/docker-backup-storage \
|
||||||
|
&& mv /var/www/app/public /var/www/app/docker-backup-public \
|
||||||
|
&& mkdir -p /var/www/app/public/logo /var/www/app/storage \
|
||||||
|
&& touch /var/www/app/.env \
|
||||||
|
&& chmod -R 755 /var/www/app/storage \
|
||||||
|
&& chown -R www-data:www-data /var/www/app/storage /var/www/app/bootstrap /var/www/app/public/logo /var/www/app/.env /var/www/app/docker-backup-storage /var/www/app/docker-backup-public\
|
||||||
|
&& rm -rf /var/www/app/docs /var/www/app/tests /var/www/ninja
|
||||||
|
|
||||||
|
######
|
||||||
|
# DEFAULT ENV
|
||||||
|
######
|
||||||
|
ENV LOG errorlog
|
||||||
|
ENV SELF_UPDATER_SOURCE ''
|
||||||
|
ENV PHANTOMJS_BIN_PATH /usr/local/bin/phantomjs
|
||||||
|
|
||||||
|
|
||||||
|
#use to be mounted into nginx for exemple
|
||||||
|
VOLUME /var/www/app/public
|
||||||
|
|
||||||
|
WORKDIR /var/www/app
|
||||||
|
|
||||||
|
COPY entrypoint.sh /entrypoint.sh
|
||||||
|
|
||||||
|
ENTRYPOINT ["/entrypoint.sh"]
|
||||||
|
CMD ["php-fpm"]
|
||||||
111
README.md
111
README.md
@@ -1,95 +1,40 @@
|
|||||||
[](https://hub.docker.com/r/invoiceninja/invoiceninja-debian)
|
DockerFile for invoice ninja (https://www.invoiceninja.com/)
|
||||||
[](https://hub.docker.com/r/invoiceninja/invoiceninja-debian)
|
|
||||||
[](https://github.com/invoiceninja/dockerfiles/actions/workflows/publish-image.yaml)
|
|
||||||
[](https://github.com/invoiceninja/dockerfiles/actions/workflows/build-image-v5.yaml)
|
|
||||||
|
|
||||||
# Debian Docker for [Invoice Ninja](https://www.invoiceninja.com/)
|
This image is based on `php:7.0-fpm` official version.
|
||||||
|
|
||||||
:crown: **Features**
|
To make your data persistent, you have to mount `/var/www/app/public/logo` and `/var/www/app/storage`.
|
||||||
|
|
||||||
NGINX webserver support [NGINX](https://nginx.org/)
|
|
||||||
Built-in Chrome for PDF generation and other features
|
|
||||||
Saxon XLST 2 engine
|
|
||||||
OPcache
|
|
||||||
Multi language support
|
|
||||||
|
|
||||||
## Get started with Docker Compose
|
### Usage
|
||||||
|
|
||||||
This Debian-based image includes Chrome for enhanced PDF generation and other features. To get started:
|
To run it:
|
||||||
|
|
||||||
```bash
|
|
||||||
git clone https://github.com/invoiceninja/dockerfiles.git -b debian
|
|
||||||
cd dockerfiles/debian
|
|
||||||
```
|
|
||||||
|
|
||||||
Instead of defining our environment variables inside our docker-compose.yml file we now define this in the `.env` file, open this file up and insert your `APP_URL`, `APP_KEY` and update the rest of the variables as required.
|
|
||||||
|
|
||||||
```
|
```
|
||||||
APP_URL=http://in.localhost:8003/
|
docker run -d \
|
||||||
APP_KEY=<insert your generated key in here>
|
-e APP_ENV='production' \
|
||||||
APP_DEBUG=true
|
-e APP_DEBUG=0 \
|
||||||
REQUIRE_HTTPS=false
|
-e APP_URL='http://ninja.dev' \
|
||||||
IN_USER_EMAIL=
|
-e APP_KEY='SomeRandomStringSomeRandomString' \
|
||||||
IN_PASSWORD=
|
-e APP_CIPHER='AES-256-CBC' \
|
||||||
|
-e DB_TYPE='mysql' \
|
||||||
|
-e DB_STRICT='false' \
|
||||||
|
-e DB_HOST='localhost' \
|
||||||
|
-e DB_DATABASE='ninja' \
|
||||||
|
-e DB_USERNAME='ninja' \
|
||||||
|
-e DB_PASSWORD='ninja' \
|
||||||
|
-p '80:80' \
|
||||||
|
invoiceninja/invoiceninja
|
||||||
```
|
```
|
||||||
|
A list of environment variables can be found [here](https://github.com/invoiceninja/invoiceninja/blob/master/.env.example)
|
||||||
## Initial account setup
|
|
||||||
|
|
||||||
### Primary account setup
|
|
||||||
Prior to starting the container for the first time, open the .env file and update the IN_USER_EMAIL and IN_PASSWORD variables with your primary account.
|
|
||||||
|
|
||||||
This will take care of the initial account setup. You can later remove these .env variables.
|
|
||||||
|
|
||||||
> ⚠️ **Warning**
|
|
||||||
> If `IN_USER_EMAIL` and `IN_PASSWORD` are not set the default user email and password is "admin@example.com" and "changeme!" respectively.
|
|
||||||
|
|
||||||
After the container has completed the first startup you can delete these two environment variables.
|
|
||||||
|
|
||||||
### Generate a APP_KEY
|
|
||||||
|
|
||||||
The `APP_KEY` can be generated by running:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# If you haven't started the containers yet:
|
|
||||||
docker run --rm -it invoiceninja/invoiceninja-debian php artisan key:generate --show
|
|
||||||
|
|
||||||
# Or if your containers are already running:
|
|
||||||
docker compose exec app php artisan key:generate --show
|
|
||||||
```
|
|
||||||
|
|
||||||
Copy the entire string and insert in the .env file at `APP_KEY=base64....`
|
|
||||||
|
|
||||||
**Note: For PDF generation using localhost, your domain name MUST end in .test for PDFs to generate correctly due to Chrome's DNS resolver.
|
|
||||||
|
|
||||||
Start the container with:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
docker compose up -d
|
|
||||||
```
|
|
||||||
|
|
||||||
**Note: When performing the setup, the Database host is ```mysql```
|
|
||||||
|
|
||||||
### Updating the Image
|
|
||||||
|
|
||||||
To upgrade to a newer release image, update your docker-compose.yml first by running:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
docker compose down
|
|
||||||
docker compose pull
|
|
||||||
docker compose up
|
|
||||||
```
|
|
||||||
|
|
||||||
It is recommended to perform a backup before updating.
|
|
||||||
|
|
||||||
### Support
|
|
||||||
|
|
||||||
If you discover a bug, please create an issue. For general queries, visit our [Forum](https://forum.invoiceninja.com/)
|
|
||||||
|
|
||||||
|
|
||||||
### Todo
|
### With docker-compose
|
||||||
|
|
||||||
This is a new image which should provide much better support for all users, however there are some items left to complete
|
A pretty ready to use docker-compose configuration can be found into [`./docker-compose`](https://github.com/invoiceninja/dockerfiles/tree/master/docker-compose).
|
||||||
|
Rename `.env.example` into `.env` and change the environment's variable as needed.
|
||||||
|
The file assume that all your persistent data is mounted from `/srv/invoiceninja/`.
|
||||||
|
Once started the application should be accessible at http://localhost:8000/
|
||||||
|
|
||||||
- [ ] Backup script
|
### Know issue
|
||||||
- [ ] Integrate soketi server
|
|
||||||
- [ ] Add elastic search for site wide search
|
Phantomjs doesn't work on linux alpine https://github.com/ariya/phantomjs/issues/14186
|
||||||
|
|||||||
69
alpine/Dockerfile
Normal file
69
alpine/Dockerfile
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
ARG PHP_IMAGE_TAG=7.2-fpm-alpine
|
||||||
|
FROM php:${PHP_IMAGE_TAG}
|
||||||
|
|
||||||
|
LABEL maintainer="Samuel Laulhau <sam@lalop.co>"
|
||||||
|
|
||||||
|
#####
|
||||||
|
# SYSTEM REQUIREMENT
|
||||||
|
#####
|
||||||
|
ENV PHANTOMJS phantomjs-2.1.1-linux-x86_64
|
||||||
|
RUN apk update \
|
||||||
|
&& apk add --no-cache git gmp-dev freetype-dev libjpeg-turbo-dev \
|
||||||
|
coreutils chrpath fontconfig libpng-dev
|
||||||
|
|
||||||
|
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
|
||||||
|
&& docker-php-ext-configure gmp \
|
||||||
|
&& docker-php-ext-install iconv mbstring pdo pdo_mysql zip gd gmp opcache \
|
||||||
|
&& echo "php_admin_value[error_reporting] = E_ALL & ~E_NOTICE & ~E_WARNING & ~E_STRICT & ~E_DEPRECATED">>/usr/local/etc/php-fpm.d/www.conf
|
||||||
|
|
||||||
|
RUN cd /usr/share \
|
||||||
|
&& curl -L https://github.com/Overbryd/docker-phantomjs-alpine/releases/download/2.11/phantomjs-alpine-x86_64.tar.bz2 | tar xj \
|
||||||
|
&& ln -s /usr/share/phantomjs/phantomjs /usr/local/bin/phantomjs
|
||||||
|
|
||||||
|
|
||||||
|
# set recommended PHP.ini settings
|
||||||
|
# see https://secure.php.net/manual/en/opcache.installation.php
|
||||||
|
RUN { \
|
||||||
|
echo 'opcache.memory_consumption=128'; \
|
||||||
|
echo 'opcache.interned_strings_buffer=8'; \
|
||||||
|
echo 'opcache.max_accelerated_files=4000'; \
|
||||||
|
echo 'opcache.revalidate_freq=60'; \
|
||||||
|
echo 'opcache.fast_shutdown=1'; \
|
||||||
|
echo 'opcache.enable_cli=1'; \
|
||||||
|
} > /usr/local/etc/php/conf.d/opcache-recommended.ini
|
||||||
|
|
||||||
|
#####
|
||||||
|
# DOWNLOAD AND INSTALL INVOICE NINJA
|
||||||
|
#####
|
||||||
|
|
||||||
|
ENV INVOICENINJA_VERSION 4.5.14
|
||||||
|
|
||||||
|
RUN curl -o ninja.zip -SL https://download.invoiceninja.com/ninja-v${INVOICENINJA_VERSION}.zip \
|
||||||
|
&& unzip ninja.zip -d /var/www/ \
|
||||||
|
&& rm ninja.zip \
|
||||||
|
&& mv /var/www/ninja /var/www/app \
|
||||||
|
&& mv /var/www/app/storage /var/www/app/docker-backup-storage \
|
||||||
|
&& mv /var/www/app/public /var/www/app/docker-backup-public \
|
||||||
|
&& mkdir -p /var/www/app/public/logo /var/www/app/storage \
|
||||||
|
&& touch /var/www/app/.env \
|
||||||
|
&& chmod -R 755 /var/www/app/storage \
|
||||||
|
&& rm -rf /var/www/app/docs /var/www/app/tests /var/www/ninja
|
||||||
|
|
||||||
|
######
|
||||||
|
# DEFAULT ENV
|
||||||
|
######
|
||||||
|
ENV LOG errorlog
|
||||||
|
ENV SELF_UPDATER_SOURCE ''
|
||||||
|
ENV PHANTOMJS_BIN_PATH /usr/local/bin/phantomjs
|
||||||
|
|
||||||
|
|
||||||
|
#use to be mounted into nginx for exemple
|
||||||
|
VOLUME /var/www/app/public
|
||||||
|
|
||||||
|
WORKDIR /var/www/app
|
||||||
|
|
||||||
|
COPY entrypoint.sh /usr/local/bin/invoice-entrypoint
|
||||||
|
# RUN chmod +x /usr/local/bin/invoice-entrypoint
|
||||||
|
|
||||||
|
ENTRYPOINT ["invoice-entrypoint"]
|
||||||
|
CMD ["php-fpm"]
|
||||||
47
alpine/entrypoint.sh
Executable file
47
alpine/entrypoint.sh
Executable file
@@ -0,0 +1,47 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [ ! -d /var/www/app/storage ]; then
|
||||||
|
cp -Rp /var/www/app/docker-backup-storage /var/www/app/storage
|
||||||
|
else
|
||||||
|
IN_STORAGE_BACKUP="$(ls /var/www/app/docker-backup-storage/)"
|
||||||
|
for path in $IN_STORAGE_BACKUP; do
|
||||||
|
if [ ! -e "/var/www/app/storage/$path" ]; then
|
||||||
|
cp -Rp "/var/www/app/docker-backup-storage/$path" "/var/www/app/storage/"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d /var/www/app/public/logo ]; then
|
||||||
|
cp -Rp /var/www/app/docker-backup-public/logo /var/www/app/public/logo
|
||||||
|
else
|
||||||
|
IN_LOGO_BACKUP="$(ls /var/www/app/docker-backup-public/logo/)"
|
||||||
|
for path in $IN_LOGO_BACKUP; do
|
||||||
|
if [ ! -e "/var/www/app/public/logo/$path" ]; then
|
||||||
|
cp -Rp "/var/www/app/docker-backup-public/logo/$path" "/var/www/app/public/logo/"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
# compare public volume version with image version
|
||||||
|
if [ ! -e /var/www/app/public/version ] || [ "$INVOICENINJA_VERSION" != "$(cat /var/www/app/public/version)" ]; then
|
||||||
|
echo 'clone public directory'
|
||||||
|
cp -Rp /var/www/app/docker-backup-public/* /var/www/app/public/
|
||||||
|
echo $INVOICENINJA_VERSION > /var/www/app/public/version
|
||||||
|
fi
|
||||||
|
|
||||||
|
# fix permission for monted directories
|
||||||
|
chown www-data:www-data /var/www/app/storage
|
||||||
|
chown www-data:www-data /var/www/app/public/logo
|
||||||
|
|
||||||
|
|
||||||
|
#php artisan optimize --force
|
||||||
|
#php artisan migrate --force
|
||||||
|
|
||||||
|
#if [ ! -e "/var/www/app/is-seeded" ]; then
|
||||||
|
#php artisan db:seed --force
|
||||||
|
#touch "/var/www/app/is-seeded"
|
||||||
|
#fi
|
||||||
|
|
||||||
|
echo 'start'
|
||||||
|
exec "$@"
|
||||||
62
debian/.env
vendored
62
debian/.env
vendored
@@ -1,62 +0,0 @@
|
|||||||
# IN application vars
|
|
||||||
APP_URL=http://localhost:8012
|
|
||||||
APP_KEY=base64:RR++yx2rJ9kdxbdh3+AmbHLDQu+Q76i++co9Y8ybbno=
|
|
||||||
APP_ENV=production
|
|
||||||
APP_DEBUG=true
|
|
||||||
REQUIRE_HTTPS=false
|
|
||||||
PHANTOMJS_PDF_GENERATION=false
|
|
||||||
PDF_GENERATOR=snappdf
|
|
||||||
TRUSTED_PROXIES='*'
|
|
||||||
|
|
||||||
|
|
||||||
CACHE_DRIVER=redis
|
|
||||||
QUEUE_CONNECTION=redis
|
|
||||||
SESSION_DRIVER=redis
|
|
||||||
|
|
||||||
REDIS_HOST=redis
|
|
||||||
REDIS_PASSWORD=null
|
|
||||||
REDIS_PORT=6379
|
|
||||||
|
|
||||||
FILESYSTEM_DISK=debian_docker
|
|
||||||
|
|
||||||
# DB connection
|
|
||||||
DB_HOST=mysql
|
|
||||||
DB_PORT=3306
|
|
||||||
DB_DATABASE=ninja
|
|
||||||
DB_USERNAME=ninja
|
|
||||||
DB_PASSWORD=ninja
|
|
||||||
DB_ROOT_PASSWORD=ninjaAdm1nPassword
|
|
||||||
DB_CONNECTION=mysql
|
|
||||||
|
|
||||||
# Create initial user
|
|
||||||
# Default to these values if empty
|
|
||||||
IN_USER_EMAIL=admin@example.com
|
|
||||||
IN_PASSWORD=changeme!
|
|
||||||
# IN_USER_EMAIL=
|
|
||||||
# IN_PASSWORD=
|
|
||||||
|
|
||||||
# Mail options
|
|
||||||
MAIL_MAILER=log
|
|
||||||
MAIL_HOST=smtp.mailtrap.io
|
|
||||||
MAIL_PORT=2525
|
|
||||||
MAIL_USERNAME=null
|
|
||||||
MAIL_PASSWORD=null
|
|
||||||
MAIL_ENCRYPTION=null
|
|
||||||
MAIL_FROM_ADDRESS='user@example.com'
|
|
||||||
MAIL_FROM_NAME='Self Hosted User'
|
|
||||||
|
|
||||||
# MySQL
|
|
||||||
MYSQL_ROOT_PASSWORD=ninjaAdm1nPassword
|
|
||||||
MYSQL_USER=ninja
|
|
||||||
MYSQL_PASSWORD=ninja
|
|
||||||
MYSQL_DATABASE=ninja
|
|
||||||
|
|
||||||
# GoCardless/Nordigen API key for banking integration
|
|
||||||
NORDIGEN_SECRET_ID=
|
|
||||||
NORDIGEN_SECRET_KEY=
|
|
||||||
|
|
||||||
IS_DOCKER=true
|
|
||||||
SCOUT_DRIVER=null
|
|
||||||
#SNAPPDF_CHROMIUM_PATH=/usr/bin/google-chrome-stable
|
|
||||||
|
|
||||||
|
|
||||||
85
debian/Dockerfile
vendored
85
debian/Dockerfile
vendored
@@ -1,85 +0,0 @@
|
|||||||
ARG PHP=8.3
|
|
||||||
|
|
||||||
FROM php:${PHP}-fpm AS prepare-app
|
|
||||||
|
|
||||||
USER www-data
|
|
||||||
|
|
||||||
RUN curl -sL "https://github.com/invoiceninja/invoiceninja/releases/latest/download/invoiceninja.tar.gz" | \
|
|
||||||
tar -xz -C /var/www/html \
|
|
||||||
&& ln -s /var/www/html/resources/views/react/index.blade.php /var/www/html/public/index.html \
|
|
||||||
&& php artisan storage:link \
|
|
||||||
# Workaround for application updates
|
|
||||||
&& mv /var/www/html/public /tmp/public
|
|
||||||
|
|
||||||
# ==================
|
|
||||||
# InvoiceNinja image
|
|
||||||
# ==================
|
|
||||||
FROM php:${PHP}-fpm
|
|
||||||
|
|
||||||
# PHP modules
|
|
||||||
ARG php_require="bcmath gd mbstring pdo_mysql zip"
|
|
||||||
ARG php_suggest="exif imagick intl pcntl saxon soap"
|
|
||||||
ARG php_extra="opcache"
|
|
||||||
|
|
||||||
# Install system dependencies
|
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
||||||
mariadb-client \
|
|
||||||
gpg \
|
|
||||||
supervisor \
|
|
||||||
# Unicode support for PDF
|
|
||||||
fonts-noto-cjk-extra \
|
|
||||||
fonts-wqy-microhei \
|
|
||||||
fonts-wqy-zenhei \
|
|
||||||
xfonts-wqy \
|
|
||||||
# Install google-chrome-stable(amd64)/chromium(arm64)
|
|
||||||
&& if [ "$(dpkg --print-architecture)" = "amd64" ]; then \
|
|
||||||
mkdir -p /etc/apt/keyrings \
|
|
||||||
&& curl -fsSL https://dl.google.com/linux/linux_signing_key.pub | \
|
|
||||||
gpg --dearmor -o /etc/apt/keyrings/google.gpg \
|
|
||||||
&& echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/google.gpg] https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list \
|
|
||||||
&& apt-get update \
|
|
||||||
&& apt-get install -y --no-install-recommends google-chrome-stable; \
|
|
||||||
elif [ "$(dpkg --print-architecture)" = "arm64" ]; then \
|
|
||||||
apt-get install -y --no-install-recommends \
|
|
||||||
chromium; \
|
|
||||||
fi \
|
|
||||||
# Create config directory for chromium/google-chrome-stable
|
|
||||||
&& mkdir /var/www/.config \
|
|
||||||
&& chown www-data:www-data /var/www/.config \
|
|
||||||
# Cleanup
|
|
||||||
&& apt-get purge -y gpg \
|
|
||||||
&& apt-get autoremove -y \
|
|
||||||
&& apt-get clean \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
# Install PHP extensions
|
|
||||||
COPY --from=ghcr.io/mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/
|
|
||||||
|
|
||||||
RUN install-php-extensions \
|
|
||||||
${php_require} \
|
|
||||||
${php_suggest} \
|
|
||||||
${php_extra}
|
|
||||||
|
|
||||||
# Configure PHP
|
|
||||||
RUN ln -s "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
|
|
||||||
|
|
||||||
COPY php/php.ini /usr/local/etc/php/conf.d/invoiceninja.ini
|
|
||||||
|
|
||||||
COPY php/php-fpm.conf /usr/local/etc/php-fpm.d/invoiceninja.conf
|
|
||||||
|
|
||||||
# Setup supervisor
|
|
||||||
COPY supervisor/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
|
||||||
|
|
||||||
# Setup InvoiceNinja
|
|
||||||
COPY --from=prepare-app /var/www/html /var/www/html
|
|
||||||
COPY --from=prepare-app /tmp/public /tmp/public
|
|
||||||
|
|
||||||
# Add initialization script
|
|
||||||
COPY --chmod=0755 scripts/init.sh /usr/local/bin/init.sh
|
|
||||||
|
|
||||||
# Health check
|
|
||||||
HEALTHCHECK --interval=30s --timeout=5s --start-period=30s --retries=3 \
|
|
||||||
CMD pgrep -f "php-fpm: master process"
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/local/bin/init.sh"]
|
|
||||||
CMD ["supervisord", "-c", "/etc/supervisor/supervisord.conf"]
|
|
||||||
93
debian/docker-compose.yml
vendored
93
debian/docker-compose.yml
vendored
@@ -1,93 +0,0 @@
|
|||||||
x-logging: &default-logging
|
|
||||||
options:
|
|
||||||
max-size: "10m"
|
|
||||||
max-file: "3"
|
|
||||||
driver: json-file
|
|
||||||
|
|
||||||
services:
|
|
||||||
app:
|
|
||||||
build:
|
|
||||||
context: .
|
|
||||||
image: invoiceninja/invoiceninja-debian:${TAG:-latest}
|
|
||||||
restart: unless-stopped
|
|
||||||
env_file:
|
|
||||||
- ./.env
|
|
||||||
volumes:
|
|
||||||
- ./.env:/var/www/html/.env
|
|
||||||
# - ./php/php.ini:/usr/local/etc/php/conf.d/invoiceninja.ini:ro
|
|
||||||
# - ./php/php-fpm.conf:/usr/local/etc/php-fpm.d/invoiceninja.conf:ro
|
|
||||||
# - ./supervisor/supervisord.conf:/etc/supervisor/conf.d/supervisord.conf:ro
|
|
||||||
- app_public:/var/www/html/public
|
|
||||||
- app_storage:/var/www/html/storage
|
|
||||||
networks:
|
|
||||||
- app-network
|
|
||||||
depends_on:
|
|
||||||
mysql:
|
|
||||||
condition: service_healthy
|
|
||||||
redis:
|
|
||||||
condition: service_healthy
|
|
||||||
logging: *default-logging
|
|
||||||
|
|
||||||
nginx:
|
|
||||||
image: nginx:alpine
|
|
||||||
restart: unless-stopped
|
|
||||||
ports:
|
|
||||||
- "80:80"
|
|
||||||
volumes:
|
|
||||||
- ./nginx:/etc/nginx/conf.d:ro
|
|
||||||
- app_public:/var/www/html/public:ro
|
|
||||||
- app_storage:/var/www/html/storage:ro
|
|
||||||
networks:
|
|
||||||
- app-network
|
|
||||||
depends_on:
|
|
||||||
- app
|
|
||||||
logging: *default-logging
|
|
||||||
|
|
||||||
mysql:
|
|
||||||
image: mysql:8
|
|
||||||
restart: unless-stopped
|
|
||||||
env_file:
|
|
||||||
- ./.env
|
|
||||||
environment:
|
|
||||||
MYSQL_DATABASE: ${DB_DATABASE}
|
|
||||||
MYSQL_USER: ${DB_USERNAME}
|
|
||||||
MYSQL_PASSWORD: ${DB_PASSWORD}
|
|
||||||
MYSQL_ROOT_PASSWORD: ${DB_ROOT_PASSWORD}
|
|
||||||
volumes:
|
|
||||||
- mysql_data:/var/lib/mysql
|
|
||||||
networks:
|
|
||||||
- app-network
|
|
||||||
healthcheck:
|
|
||||||
test: [ "CMD", "mysqladmin", "ping", "-h", "localhost", "-u${MYSQL_USER}", "-p${MYSQL_PASSWORD}" ]
|
|
||||||
interval: 10s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 5
|
|
||||||
logging: *default-logging
|
|
||||||
|
|
||||||
redis:
|
|
||||||
image: redis:alpine
|
|
||||||
restart: unless-stopped
|
|
||||||
volumes:
|
|
||||||
- redis_data:/data
|
|
||||||
networks:
|
|
||||||
- app-network
|
|
||||||
healthcheck:
|
|
||||||
test: [ "CMD", "redis-cli", "ping" ]
|
|
||||||
interval: 10s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 5
|
|
||||||
logging: *default-logging
|
|
||||||
|
|
||||||
networks:
|
|
||||||
app-network:
|
|
||||||
driver: bridge
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
app_public:
|
|
||||||
driver: local
|
|
||||||
app_storage:
|
|
||||||
driver: local
|
|
||||||
mysql_data:
|
|
||||||
driver: local
|
|
||||||
redis_data:
|
|
||||||
driver: local
|
|
||||||
14
debian/nginx/invoiceninja.conf
vendored
14
debian/nginx/invoiceninja.conf
vendored
@@ -1,14 +0,0 @@
|
|||||||
# https://nginx.org/en/docs/http/ngx_http_core_module.html
|
|
||||||
client_max_body_size 10M;
|
|
||||||
client_body_buffer_size 10M;
|
|
||||||
server_tokens off;
|
|
||||||
|
|
||||||
# https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html
|
|
||||||
fastcgi_buffers 32 16K;
|
|
||||||
|
|
||||||
# https://nginx.org/en/docs/http/ngx_http_gzip_module.html
|
|
||||||
gzip on;
|
|
||||||
gzip_comp_level 2;
|
|
||||||
gzip_min_length 1M;
|
|
||||||
gzip_proxied any;
|
|
||||||
gzip_types *;
|
|
||||||
32
debian/nginx/laravel.conf
vendored
32
debian/nginx/laravel.conf
vendored
@@ -1,32 +0,0 @@
|
|||||||
# https://laravel.com/docs/master/deployment#nginx
|
|
||||||
server {
|
|
||||||
listen 80 default_server;
|
|
||||||
server_name _;
|
|
||||||
root /var/www/html/public;
|
|
||||||
|
|
||||||
add_header X-Frame-Options "SAMEORIGIN";
|
|
||||||
add_header X-Content-Type-Options "nosniff";
|
|
||||||
|
|
||||||
index index.php;
|
|
||||||
|
|
||||||
charset utf-8;
|
|
||||||
|
|
||||||
location / {
|
|
||||||
try_files $uri $uri/ /index.php?$query_string;
|
|
||||||
}
|
|
||||||
|
|
||||||
location = /favicon.ico { access_log off; log_not_found off; }
|
|
||||||
location = /robots.txt { access_log off; log_not_found off; }
|
|
||||||
|
|
||||||
error_page 404 /index.php;
|
|
||||||
|
|
||||||
location ~ \.php$ {
|
|
||||||
fastcgi_pass app:9000;
|
|
||||||
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
|
|
||||||
include fastcgi_params;
|
|
||||||
}
|
|
||||||
|
|
||||||
location ~ /\.(?!well-known).* {
|
|
||||||
deny all;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
1
debian/php/php-fpm.conf
vendored
1
debian/php/php-fpm.conf
vendored
@@ -1 +0,0 @@
|
|||||||
pm.max_children = 10
|
|
||||||
23
debian/php/php.ini
vendored
23
debian/php/php.ini
vendored
@@ -1,23 +0,0 @@
|
|||||||
[core]
|
|
||||||
; https://www.php.net/manual/en/ini.core.php
|
|
||||||
post_max_size=10M
|
|
||||||
upload_max_filesize=10M
|
|
||||||
|
|
||||||
[opcache]
|
|
||||||
; https://www.php.net/manual/en/opcache.installation.php#opcache.installation.recommended
|
|
||||||
opcache.enable_cli=1
|
|
||||||
|
|
||||||
[jit]
|
|
||||||
; https://wiki.php.net/rfc/jit_config_defaults
|
|
||||||
opcache.jit=tracing
|
|
||||||
opcache.jit_buffer_size=64M
|
|
||||||
|
|
||||||
[extra]
|
|
||||||
; http://symfony.com/doc/current/performance.html
|
|
||||||
opcache.memory_consumption=256
|
|
||||||
opcache.max_accelerated_files=20000
|
|
||||||
opcache.preload=/var/www/html/preload.php
|
|
||||||
opcache.preload_user=www-data
|
|
||||||
opcache.validate_timestamps=0
|
|
||||||
realpath_cache_size = 4096K
|
|
||||||
realpath_cache_ttl = 600
|
|
||||||
67
debian/scripts/init.sh
vendored
67
debian/scripts/init.sh
vendored
@@ -1,67 +0,0 @@
|
|||||||
#!/bin/sh -eu
|
|
||||||
|
|
||||||
# Set PDF generation browser path based on architecture
|
|
||||||
if [ "$(dpkg --print-architecture)" = "amd64" ]; then
|
|
||||||
export SNAPPDF_CHROMIUM_PATH=/usr/bin/google-chrome-stable
|
|
||||||
elif [ "$(dpkg --print-architecture)" = "arm64" ]; then
|
|
||||||
export SNAPPDF_CHROMIUM_PATH=/usr/bin/chromium
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$*" = 'supervisord -c /etc/supervisor/supervisord.conf' ]; then
|
|
||||||
|
|
||||||
# Check for required folders and create if needed
|
|
||||||
[ -d /var/www/html/storage/framework/sessions ] || mkdir -p /var/www/html/storage/framework/sessions
|
|
||||||
[ -d /var/www/html/storage/framework/views ] || mkdir -p /var/www/html/storage/framework/views
|
|
||||||
[ -d /var/www/html/storage/framework/cache ] || mkdir -p /var/www/html/storage/framework/cache
|
|
||||||
|
|
||||||
# Workaround for application updates
|
|
||||||
if [ "$(ls -A /tmp/public)" ]; then
|
|
||||||
echo "Updating public folder..."
|
|
||||||
rm -rf /var/www/html/public/.htaccess \
|
|
||||||
/var/www/html/public/.well-known \
|
|
||||||
/var/www/html/public/*
|
|
||||||
mv /tmp/public/* \
|
|
||||||
/tmp/public/.htaccess \
|
|
||||||
/tmp/public/.well-known \
|
|
||||||
/var/www/html/public/
|
|
||||||
fi
|
|
||||||
echo "Public Folder is up to date"
|
|
||||||
|
|
||||||
# Ensure owner, file and directory permissions are correct
|
|
||||||
chown -R www-data:www-data \
|
|
||||||
/var/www/html/public \
|
|
||||||
/var/www/html/storage
|
|
||||||
find /var/www/html/public \
|
|
||||||
/var/www/html/storage \
|
|
||||||
-type f -exec chmod 644 {} \;
|
|
||||||
find /var/www/html/public \
|
|
||||||
/var/www/html/storage \
|
|
||||||
-type d -exec chmod 755 {} \;
|
|
||||||
|
|
||||||
# Clear and cache config in production
|
|
||||||
if [ "$APP_ENV" = "production" ]; then
|
|
||||||
runuser -u www-data -- php artisan optimize
|
|
||||||
runuser -u www-data -- php artisan package:discover
|
|
||||||
runuser -u www-data -- php artisan migrate --force
|
|
||||||
|
|
||||||
# If first IN run, it needs to be initialized
|
|
||||||
if [ "$(php -d opcache.preload='' artisan tinker --execute='echo Schema::hasTable("accounts") && !App\Models\Account::all()->first();')" = "1" ]; then
|
|
||||||
echo "Running initialization..."
|
|
||||||
|
|
||||||
php artisan db:seed --force
|
|
||||||
|
|
||||||
if [ -n "${IN_USER_EMAIL}" ] && [ -n "${IN_PASSWORD}" ]; then
|
|
||||||
php artisan ninja:create-account --email "${IN_USER_EMAIL}" --password "${IN_PASSWORD}"
|
|
||||||
else
|
|
||||||
echo "Initialization failed - Set IN_USER_EMAIL and IN_PASSWORD in .env"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Production setup completed"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Starting supervisord..."
|
|
||||||
fi
|
|
||||||
|
|
||||||
exec "$@"
|
|
||||||
39
debian/supervisor/supervisord.conf
vendored
39
debian/supervisor/supervisord.conf
vendored
@@ -1,39 +0,0 @@
|
|||||||
[supervisord]
|
|
||||||
nodaemon=true
|
|
||||||
user=root
|
|
||||||
logfile=/dev/null
|
|
||||||
logfile_maxbytes=0
|
|
||||||
pidfile=/var/run/supervisord.pid
|
|
||||||
|
|
||||||
[program:php-fpm]
|
|
||||||
command=/usr/local/sbin/php-fpm -F
|
|
||||||
autostart=true
|
|
||||||
autorestart=true
|
|
||||||
priority=5
|
|
||||||
stdout_logfile=/dev/fd/1
|
|
||||||
stdout_logfile_maxbytes=0
|
|
||||||
redirect_stderr=true
|
|
||||||
|
|
||||||
[program:queue-worker]
|
|
||||||
process_name=%(program_name)s_%(process_num)02d
|
|
||||||
command=php /var/www/html/artisan queue:work --sleep=3 --tries=3 --max-time=3600 --verbose
|
|
||||||
autostart=true
|
|
||||||
autorestart=true
|
|
||||||
stopasgroup=true
|
|
||||||
killasgroup=true
|
|
||||||
user=www-data
|
|
||||||
numprocs=2
|
|
||||||
environment=HOME="/var/www"
|
|
||||||
stdout_logfile=/dev/fd/1
|
|
||||||
stdout_logfile_maxbytes=0
|
|
||||||
redirect_stderr=true
|
|
||||||
stopwaitsecs=3600
|
|
||||||
|
|
||||||
[program:scheduler]
|
|
||||||
command=php /var/www/html/artisan schedule:work --verbose
|
|
||||||
autostart=true
|
|
||||||
autorestart=true
|
|
||||||
user=www-data
|
|
||||||
stdout_logfile=/dev/fd/1
|
|
||||||
stdout_logfile_maxbytes=0
|
|
||||||
redirect_stderr=true
|
|
||||||
17
docker-compose/.env.example
Normal file
17
docker-compose/.env.example
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
MYSQL_DATABASE=ninja
|
||||||
|
MYSQL_ROOT_PASSWORD=pwd
|
||||||
|
|
||||||
|
APP_DEBUG=0
|
||||||
|
APP_URL=http://localhost:8000
|
||||||
|
APP_KEY=SomeRandomStringSomeRandomString
|
||||||
|
APP_CIPHER=AES-256-CBC
|
||||||
|
DB_USERNAME=root
|
||||||
|
DB_PASSWORD=pwd
|
||||||
|
DB_HOST=mysql
|
||||||
|
DB_DATABASE=ninja
|
||||||
|
MAIL_HOST=mail.service.host
|
||||||
|
MAIL_USERNAME=username
|
||||||
|
MAIL_PASSWORD=password
|
||||||
|
MAIL_DRIVER=smtp
|
||||||
|
MAIL_FROM_NAME="My name"
|
||||||
|
MAIL_FROM_ADDRESS=user@mail.com
|
||||||
70
docker-compose/docker-compose.yml
Normal file
70
docker-compose/docker-compose.yml
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
version: '3.6'
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
db:
|
||||||
|
storage:
|
||||||
|
logo:
|
||||||
|
public:
|
||||||
|
|
||||||
|
# uncomment if you want to use external network (example network: "web")
|
||||||
|
#networks:
|
||||||
|
# web:
|
||||||
|
# external: true
|
||||||
|
|
||||||
|
services:
|
||||||
|
db:
|
||||||
|
image: mysql:5
|
||||||
|
env_file: .env
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- db:/var/lib/mysql
|
||||||
|
networks:
|
||||||
|
- default
|
||||||
|
|
||||||
|
app:
|
||||||
|
image: invoiceninja/invoiceninja
|
||||||
|
env_file: .env
|
||||||
|
restart: always
|
||||||
|
depends_on:
|
||||||
|
- db
|
||||||
|
volumes:
|
||||||
|
- storage:/var/www/app/storage
|
||||||
|
- logo:/var/www/app/public/logo
|
||||||
|
- public:/var/www/app/public
|
||||||
|
networks:
|
||||||
|
- default
|
||||||
|
|
||||||
|
web:
|
||||||
|
image: nginx:1
|
||||||
|
volumes:
|
||||||
|
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
||||||
|
- storage:/var/www/app/storage
|
||||||
|
- logo:/var/www/app/public/logo
|
||||||
|
- public:/var/www/app/public
|
||||||
|
expose: # Expose ports without publishing them to the host machine - they’ll only be accessible to linked services.
|
||||||
|
- "80"
|
||||||
|
ports: # Delete if you want to use reverse proxy
|
||||||
|
- 8000:80
|
||||||
|
networks:
|
||||||
|
# - web # uncomment if you want to use external network (reverse proxy for example)
|
||||||
|
- default
|
||||||
|
|
||||||
|
cron:
|
||||||
|
image: invoiceninja/invoiceninja
|
||||||
|
env_file: .env
|
||||||
|
volumes:
|
||||||
|
- storage:/var/www/app/storage
|
||||||
|
- logo:/var/www/app/public/logo
|
||||||
|
- public:/var/www/app/public
|
||||||
|
entrypoint: |
|
||||||
|
bash -c 'bash -s <<EOF
|
||||||
|
trap "break;exit" SIGHUP SIGINT SIGTERM
|
||||||
|
sleep 300s
|
||||||
|
while /bin/true; do
|
||||||
|
./artisan ninja:send-invoices
|
||||||
|
./artisan ninja:send-reminders
|
||||||
|
sleep 1d
|
||||||
|
done
|
||||||
|
EOF'
|
||||||
|
networks:
|
||||||
|
- default
|
||||||
50
docker-compose/nginx.conf
Normal file
50
docker-compose/nginx.conf
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
user www-data;
|
||||||
|
|
||||||
|
events {
|
||||||
|
worker_connections 768;
|
||||||
|
}
|
||||||
|
|
||||||
|
http {
|
||||||
|
upstream backend {
|
||||||
|
server app:9000;
|
||||||
|
}
|
||||||
|
include /etc/nginx/mime.types;
|
||||||
|
default_type application/octet-stream;
|
||||||
|
gzip on;
|
||||||
|
gzip_disable "msie6";
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80 default;
|
||||||
|
server_name your_ininja_site;
|
||||||
|
|
||||||
|
root /var/www/app/public;
|
||||||
|
|
||||||
|
index index.php;
|
||||||
|
|
||||||
|
charset utf-8;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ /index.php?$query_string;
|
||||||
|
}
|
||||||
|
|
||||||
|
location = /favicon.ico { access_log off; log_not_found off; }
|
||||||
|
location = /robots.txt { access_log off; log_not_found off; }
|
||||||
|
|
||||||
|
sendfile off;
|
||||||
|
|
||||||
|
location ~ \.php$ {
|
||||||
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||||
|
fastcgi_pass backend;
|
||||||
|
fastcgi_index index.php;
|
||||||
|
include fastcgi_params;
|
||||||
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||||
|
fastcgi_intercept_errors off;
|
||||||
|
fastcgi_buffer_size 16k;
|
||||||
|
fastcgi_buffers 4 16k;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ /\.ht {
|
||||||
|
deny all;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1 +0,0 @@
|
|||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
|
|
||||||
46
entrypoint.sh
Executable file
46
entrypoint.sh
Executable file
@@ -0,0 +1,46 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [ ! -d /var/www/app/storage ]; then
|
||||||
|
cp -Rp /var/www/app/docker-backup-storage /var/www/app/storage
|
||||||
|
else
|
||||||
|
IN_STORAGE_BACKUP="$(ls /var/www/app/docker-backup-storage/)"
|
||||||
|
for path in $IN_STORAGE_BACKUP; do
|
||||||
|
if [ ! -e "/var/www/app/storage/$path" ]; then
|
||||||
|
cp -Rp "/var/www/app/docker-backup-storage/$path" "/var/www/app/storage/"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d /var/www/app/public/logo ]; then
|
||||||
|
cp -Rp /var/www/app/docker-backup-public/logo /var/www/app/public/logo
|
||||||
|
else
|
||||||
|
IN_LOGO_BACKUP="$(ls /var/www/app/docker-backup-public/logo/)"
|
||||||
|
for path in $IN_LOGO_BACKUP; do
|
||||||
|
if [ ! -e "/var/www/app/public/logo/$path" ]; then
|
||||||
|
cp -Rp "/var/www/app/docker-backup-public/logo/$path" "/var/www/app/public/logo/"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
# compare public volume version with image version
|
||||||
|
if [ ! -e /var/www/app/public/version ] || [ "$INVOICENINJA_VERSION" != "$(cat /var/www/app/public/version)" ]; then
|
||||||
|
echo 'clone public directory'
|
||||||
|
cp -Rp /var/www/app/docker-backup-public/* /var/www/app/public/
|
||||||
|
echo $INVOICENINJA_VERSION > /var/www/app/public/version
|
||||||
|
fi
|
||||||
|
|
||||||
|
# fix permission for monted directories
|
||||||
|
chown www-data:www-data /var/www/app/storage
|
||||||
|
chown www-data:www-data /var/www/app/public/logo
|
||||||
|
|
||||||
|
#php artisan optimize --force
|
||||||
|
#php artisan migrate --force
|
||||||
|
|
||||||
|
#if [ ! -e "/var/www/app/is-seeded" ]; then
|
||||||
|
#php artisan db:seed --force
|
||||||
|
#touch "/var/www/app/is-seeded"
|
||||||
|
#fi
|
||||||
|
|
||||||
|
echo 'start'
|
||||||
|
exec "$@"
|
||||||
Reference in New Issue
Block a user