zammad-docker-compose/containers/zammad-nfs/docker-entrypoint.sh

19 lines
414 B
Bash
Raw Normal View History

2017-11-20 22:59:01 +00:00
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail
if [ "$1" = 'zammad-nfs' ]; then
echo "create & mount tmpfs"
mkdir -p ${NFS_DIR}
chmod 777 ${NFS_DIR}
mount -t tmpfs -o size=${TMPFS_SIZE} none ${NFS_DIR}
echo "create nfs exports"
echo "# NFS Export for Zammad" > /etc/exports
echo "${NFS_DIR} *(rw,sync,no_subtree_check,fsid=0,no_root_squash)" >> /etc/exports
exec runsvdir /etc/sv
fi