mirror of
https://github.com/napnap75/multiarch-docker-images.git
synced 2025-12-16 03:34:18 +01:00
30 lines
638 B
Bash
30 lines
638 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
USERNAME=${USERNAME:-user}
|
|
PASSWORD=${PASSWORD:-pass}
|
|
ALLOW=${ALLOW:-10.0.0.0/8 192.168.0.0/16 172.16.0.0/12 127.0.0.1/32}
|
|
VOLUME=${VOLUME:-/data}
|
|
|
|
echo "$USERNAME:$PASSWORD" > /etc/rsyncd.secrets
|
|
chmod 0400 /etc/rsyncd.secrets
|
|
cat > /etc/rsyncd.conf <<EOF
|
|
log file = /dev/stdout
|
|
timeout = 300
|
|
max connections = 10
|
|
port = 873
|
|
[volume]
|
|
uid = root
|
|
gid = root
|
|
hosts deny = *
|
|
hosts allow = ${ALLOW}
|
|
read only = false
|
|
path = ${VOLUME}
|
|
comment = ${VOLUME} directory
|
|
auth users = ${USERNAME}
|
|
secrets file = /etc/rsyncd.secrets
|
|
EOF
|
|
|
|
mkdir -p $VOLUME
|
|
exec /usr/bin/rsync --no-detach --daemon --config /etc/rsyncd.conf
|