mirror of
https://github.com/ledgersmb/ledgersmb-docker.git
synced 2025-10-14 16:20:29 -04:00
Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
83fb7a4fde | ||
|
0dc6e65c51 | ||
|
51d1d1da0f | ||
|
9f7a4d1f8d | ||
|
7f3a3467f8 | ||
|
91a985bc31 |
@@ -5,7 +5,7 @@ ARG SRCIMAGE=debian:bookworm-slim
|
|||||||
|
|
||||||
FROM $SRCIMAGE AS builder
|
FROM $SRCIMAGE AS builder
|
||||||
|
|
||||||
ARG LSMB_VERSION="1.11.1"
|
ARG LSMB_VERSION="1.11.4"
|
||||||
ARG LSMB_DL_DIR="Releases"
|
ARG LSMB_DL_DIR="Releases"
|
||||||
ARG ARTIFACT_LOCATION="https://download.ledgersmb.org/f/$LSMB_DL_DIR/$LSMB_VERSION/ledgersmb-$LSMB_VERSION.tar.gz"
|
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\
|
the LedgerSMB project is to bring high quality ERP and accounting capabilities\
|
||||||
to Small and Midsize Businesses."
|
to Small and Midsize Businesses."
|
||||||
|
|
||||||
ARG LSMB_VERSION="1.11.1"
|
ARG LSMB_VERSION="1.11.4"
|
||||||
ARG LSMB_DL_DIR="Releases"
|
ARG LSMB_DL_DIR="Releases"
|
||||||
ARG ARTIFACT_LOCATION="https://download.ledgersmb.org/f/$LSMB_DL_DIR/$LSMB_VERSION/ledgersmb-$LSMB_VERSION.tar.gz"
|
ARG ARTIFACT_LOCATION="https://download.ledgersmb.org/f/$LSMB_DL_DIR/$LSMB_VERSION/ledgersmb-$LSMB_VERSION.tar.gz"
|
||||||
|
|
||||||
@@ -92,7 +92,7 @@ RUN set -x ; \
|
|||||||
wget --quiet -O /tmp/ledgersmb-$LSMB_VERSION.tar.gz "$ARTIFACT_LOCATION" && \
|
wget --quiet -O /tmp/ledgersmb-$LSMB_VERSION.tar.gz "$ARTIFACT_LOCATION" && \
|
||||||
tar -xzf /tmp/ledgersmb-$LSMB_VERSION.tar.gz --directory /srv && \
|
tar -xzf /tmp/ledgersmb-$LSMB_VERSION.tar.gz --directory /srv && \
|
||||||
rm -f /tmp/ledgersmb-$LSMB_VERSION.tar.gz && \
|
rm -f /tmp/ledgersmb-$LSMB_VERSION.tar.gz && \
|
||||||
cpanm --notest \
|
cpanm --metacpan --notest \
|
||||||
--with-feature=starman \
|
--with-feature=starman \
|
||||||
--with-feature=latex-pdf-ps \
|
--with-feature=latex-pdf-ps \
|
||||||
--with-feature=openoffice \
|
--with-feature=openoffice \
|
||||||
|
34
start.sh
34
start.sh
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
cd /srv/ledgersmb
|
cd /srv/ledgersmb
|
||||||
mkdir ./local/conf/
|
[[ -d ./local/conf/ ]] || mkdir ./local/conf/
|
||||||
if [[ -n "$SSMTP_ROOT" ]]; then
|
if [[ -n "$SSMTP_ROOT" ]]; then
|
||||||
echo "\$SSMTP_ROOT set; parameter is deprecated and will be ignored"
|
echo "\$SSMTP_ROOT set; parameter is deprecated and will be ignored"
|
||||||
LSMB_HAVE_DEPRECATED=1
|
LSMB_HAVE_DEPRECATED=1
|
||||||
@@ -85,9 +85,6 @@ db:
|
|||||||
mail:
|
mail:
|
||||||
transport:
|
transport:
|
||||||
\$class: LedgerSMB::Mailer::TransportSMTP
|
\$class: LedgerSMB::Mailer::TransportSMTP
|
||||||
host: $LSMB_MAIL_SMTPHOST
|
|
||||||
port: $LSMB_MAIL_SMTPPORT
|
|
||||||
helo: $LSMB_MAIL_SMTPSENDER_HOSTNAME
|
|
||||||
tls: $LSMB_MAIL_SMTPTLS
|
tls: $LSMB_MAIL_SMTPTLS
|
||||||
|
|
||||||
miscellaneous:
|
miscellaneous:
|
||||||
@@ -106,9 +103,36 @@ ui:
|
|||||||
\$ref: paths/UI
|
\$ref: paths/UI
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
if [[ -n "" ]]
|
if [[ -n "$LSMB_MAIL_SMTPHOST" ]]
|
||||||
then
|
then
|
||||||
cat <<EOF >./local/conf/ledgersmb.000.yaml
|
cat <<EOF >./local/conf/ledgersmb.000.yaml
|
||||||
|
mail:
|
||||||
|
transport:
|
||||||
|
host: $LSMB_MAIL_SMTPHOST
|
||||||
|
EOF
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -n "$LSMB_MAIL_SMTPPORT" ]]
|
||||||
|
then
|
||||||
|
cat <<EOF >./local/conf/ledgersmb.001.yaml
|
||||||
|
mail:
|
||||||
|
transport:
|
||||||
|
port: $LSMB_MAIL_SMTPPORT
|
||||||
|
EOF
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -n "$LSMB_MAIL_SMTPSENDER_HOSTNAME" ]]
|
||||||
|
then
|
||||||
|
cat <<EOF >./local/conf/ledgersmb.002.yaml
|
||||||
|
mail:
|
||||||
|
transport:
|
||||||
|
helo: $LSMB_MAIL_SMTPSENDER_HOSTNAME
|
||||||
|
EOF
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -n "$LSMB_MAIL_SMTPUSER" ]]
|
||||||
|
then
|
||||||
|
cat <<EOF >./local/conf/ledgersmb.003.yaml
|
||||||
mail:
|
mail:
|
||||||
transport:
|
transport:
|
||||||
sasl_password: ''
|
sasl_password: ''
|
||||||
|
Reference in New Issue
Block a user