mirror of
https://github.com/ledgersmb/ledgersmb-docker.git
synced 2025-10-14 00:00:29 -04:00
Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
90af6cd03f | ||
|
7cea8cfb8d | ||
|
5670f5760f | ||
|
4fb8f0fba8 | ||
|
e329f0617a | ||
|
ac2d4a8ae3 | ||
|
e254cb705c | ||
|
5849b64fde | ||
|
791df8fd1f | ||
|
5110bfcbbc | ||
|
c3f046baa9 |
13
.github/workflows/no-response.yml
vendored
13
.github/workflows/no-response.yml
vendored
@@ -11,15 +11,16 @@ on:
|
||||
|
||||
jobs:
|
||||
noResponse:
|
||||
if: github.repository_owner == 'ledgersmb'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: lee-dohm/no-response@v0.5.0
|
||||
- uses: actions/stale@v9
|
||||
with:
|
||||
token: ${{ github.token }}
|
||||
days-before-issue-stale: -1
|
||||
days-before-pr-stale: -1
|
||||
stale-issue-label: waiting-for-user
|
||||
# Number of days of inactivity before an Issue is closed for lack of response
|
||||
daysUntilClose: 90
|
||||
days-before-close: 90
|
||||
# Label requiring a response
|
||||
responseRequiredLabel: waiting-for-user
|
||||
# Comment to post when closing an Issue for lack of response. Set to `false` to disable
|
||||
closeComment: >
|
||||
close-issue-message: >
|
||||
Closing: more than 90 days without user response. Feel free to reopen with your comments.
|
||||
|
@@ -5,7 +5,7 @@ ARG SRCIMAGE=debian:bookworm-slim
|
||||
|
||||
FROM $SRCIMAGE AS builder
|
||||
|
||||
ARG LSMB_VERSION="1.11.9"
|
||||
ARG LSMB_VERSION="1.11.16"
|
||||
ARG LSMB_DL_DIR="Releases"
|
||||
ARG ARTIFACT_LOCATION="https://download.ledgersmb.org/f/$LSMB_DL_DIR/$LSMB_VERSION/ledgersmb-$LSMB_VERSION.tar.gz"
|
||||
|
||||
@@ -51,7 +51,7 @@ LABEL org.opencontainers.image.description="LedgerSMB is a full featured double-
|
||||
the LedgerSMB project is to bring high quality ERP and accounting capabilities\
|
||||
to Small and Midsize Businesses."
|
||||
|
||||
ARG LSMB_VERSION="1.11.9"
|
||||
ARG LSMB_VERSION="1.11.16"
|
||||
ARG LSMB_DL_DIR="Releases"
|
||||
ARG ARTIFACT_LOCATION="https://download.ledgersmb.org/f/$LSMB_DL_DIR/$LSMB_VERSION/ledgersmb-$LSMB_VERSION.tar.gz"
|
||||
|
||||
@@ -84,8 +84,8 @@ RUN set -x ; \
|
||||
texlive-plain-generic texlive-latex-recommended texlive-fonts-recommended \
|
||||
texlive-xetex fonts-liberation \
|
||||
lsb-release && \
|
||||
echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list && \
|
||||
(wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -) && \
|
||||
echo "deb [signed-by=/etc/apt/keyrings/postgresql.asc] http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list && \
|
||||
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc > /etc/apt/keyrings/postgresql.asc && \
|
||||
DEBIAN_FRONTEND="noninteractive" apt-get -y update && \
|
||||
DEBIAN_FRONTEND="noninteractive" apt-get -y install postgresql-client && \
|
||||
DEBIAN_FRONTEND="noninteractive" apt-get -q -y install git cpanminus make gcc libperl-dev && \
|
||||
|
@@ -243,10 +243,10 @@ the standard configuration generation process in the container can be overruled:
|
||||
|
||||
If you do not want to completely overrule the configuration generated, but instead
|
||||
supplement the configuration, you can put incremental configuration snippets in
|
||||
files named `ledgersmb.XXX.yaml` in the same folder. E.g.:
|
||||
files named `ledgersmb.1XX.yaml` in the same folder. E.g.:
|
||||
|
||||
```plain
|
||||
$ cat <<EOF > /home/ledgersmb/conf/ledgersmb.001.yaml
|
||||
$ cat <<EOF > /home/ledgersmb/conf/ledgersmb.100.yaml
|
||||
logging:
|
||||
file: ledgersmb.logging
|
||||
EOF
|
||||
|
@@ -37,9 +37,14 @@ services:
|
||||
# change the 'source' to the directory where you want the configuration
|
||||
# to be stored.
|
||||
# volumes:
|
||||
# # Override all configuration:
|
||||
# - type: bind
|
||||
# source: /home/ledgersmb/conf
|
||||
# target: /srv/ledgersmb/local/conf
|
||||
# # Add a snippet of configuration:
|
||||
# - type: bind
|
||||
# source: /home/ledgersmb/conf/ledgersmb.100.yaml
|
||||
# target: /srv/ledgersmb/local/conf/ledgersmb.100.yaml
|
||||
networks:
|
||||
- internal
|
||||
- default
|
||||
|
Reference in New Issue
Block a user