docker-radicale/entrypoint.sh

12 lines
238 B
Bash
Raw Normal View History

2021-03-17 00:49:27 +01:00
#!/bin/sh
2021-03-17 00:13:50 +01:00
if [ ! -f "$USER_FILE" ]; then
echo "No auth file found. Generating";
DIR=$(dirname $USER_FILE)
mkdir -p $DIR
htpasswd -bB -c $USER_FILE $USER $PASSWORD;
echo "Done";
fi
echo "Starting Server";
python -u -m radicale;