Skip to content
Snippets Groups Projects
Select Git revision
  • 088072d853e9371a847400afbc4f1468f13043f3
  • master default
2 results

entrypoint

Blame
    • nimrod's avatar
      088072d8
      SOgo configuration. · 088072d8
      nimrod authored
      - Configuration template.
      - Render configuration template in entrypoint.
      - Storage volumes.
      - slapd volume for ldapi:/// connection.
      - Execute the sogod instead of apache, not sure what I'm going to do
        with Apache.
      088072d8
      History
      SOgo configuration.
      nimrod authored
      - Configuration template.
      - Render configuration template in entrypoint.
      - Storage volumes.
      - slapd volume for ldapi:/// connection.
      - Execute the sogod instead of apache, not sure what I'm going to do
        with Apache.
    entrypoint 163 B
    #!/bin/sh
    set -eu
    
    # shellcheck disable=SC1091
    . /lib/lsb/init-functions
    envsubst < /usr/local/share/sogo/sogo.conf.template > /etc/sogo/sogo.conf
    
    eval exec "$@"