mirror of
https://github.com/ledgersmb/ledgersmb-docker.git
synced 2025-10-14 08:10:30 -04:00
Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
728840ce4c | ||
|
5f45abdf2d | ||
|
8afea54d65 | ||
|
326790de44 | ||
|
c4a5359b25 | ||
|
79be91758b |
10
Dockerfile
10
Dockerfile
@@ -1,9 +1,13 @@
|
||||
FROM perl:5
|
||||
MAINTAINER Freelock john@freelock.com
|
||||
|
||||
# Use postgres repository to get newer pg_dump and postgres client
|
||||
RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \
|
||||
echo "deb http://apt.postgresql.org/pub/repos/apt/ jessie-pgdg main 9.6" |tee /etc/apt/sources.list.d/postgres.list
|
||||
|
||||
# Install Perl, Tex, Starman, psql client, and all dependencies
|
||||
RUN DEBIAN_FRONTENT=noninteractive && \
|
||||
apt-get update && apt-get -y install \
|
||||
apt-get update && apt-get dist-upgrade -y && apt-get -y install \
|
||||
libcgi-emulate-psgi-perl libcgi-simple-perl libconfig-inifiles-perl \
|
||||
libdbd-pg-perl libdbi-perl libdatetime-perl \
|
||||
libdatetime-format-strptime-perl libdigest-md5-perl \
|
||||
@@ -20,12 +24,12 @@ RUN DEBIAN_FRONTENT=noninteractive && \
|
||||
texlive-xetex \
|
||||
starman \
|
||||
libopenoffice-oodoc-perl \
|
||||
postgresql-client \
|
||||
postgresql-client-9.6 \
|
||||
lpr \
|
||||
ssmtp
|
||||
|
||||
# Build time variables
|
||||
ENV LSMB_VERSION 1.5.4
|
||||
ENV LSMB_VERSION 1.5.6
|
||||
|
||||
# Install LedgerSMB
|
||||
RUN cd /srv && \
|
||||
|
@@ -1,13 +1,14 @@
|
||||
# ledgersmb-docker - EXPERIMENTAL
|
||||
# ledgersmb-docker
|
||||
Dockerfile for LedgerSMB Docker image
|
||||
|
||||
This is a work in progress to make a docker image for running LedgerSMB. It should not be relied upon for production use!
|
||||
|
||||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
- `dev-master` - Master branch from git, unstable
|
||||
- `1.5`, `1.5.x`, `latest` - Latest release tarball from 1.5 branch
|
||||
- `1.5.x`, `latest` - Latest release tarball from 1.5 branch
|
||||
- `1.4`, `1.4.x` - Latest tagged release of git 1.4 branch
|
||||
- `dev-master` - Master (1.6) branch from git, unstable, updated only on demand
|
||||
- `1.5` - Develop HEAD of 1.5 branch, updated only on demand
|
||||
|
||||
|
||||
# What is LedgerSMB?
|
||||
|
3
start.sh
3
start.sh
@@ -14,6 +14,9 @@ if [[ ! -f ledgersmb.conf ]]; then
|
||||
/srv/ledgersmb/ledgersmb.conf
|
||||
fi
|
||||
|
||||
if [ ! -f "/tmp/ledgersmb" ]; then
|
||||
mkdir /tmp/ledgersmb
|
||||
fi
|
||||
# Currently unmaintained/untested
|
||||
# if [ ! -z ${CREATE_DATABASE+x} ]; then
|
||||
# perl tools/dbsetup.pl --company $CREATE_DATABASE \
|
||||
|
@@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
ConfiguredComment='# install script update_ssmtp.sh has configured ssmtp'
|
||||
grep -qc "$ConfiguredComment" /etc/ssmtp.conf && {
|
||||
grep -qc "$ConfiguredComment" /etc/ssmtp/ssmtp.conf && {
|
||||
echo "smtp configured."
|
||||
exit
|
||||
}
|
||||
|
Reference in New Issue
Block a user