1
0
Fork 0
mirror of https://github.com/imtbl/hydrus-server-docker synced 2024-05-20 04:23:37 +12:00
hydrus-server-docker/docker-entrypoint.sh
2019-01-20 14:04:53 +01:00

14 lines
134 B
Bash

#!/bin/sh
source venv/bin/activate
stop() {
./server.py stop -d="/data"
}
trap "stop" SIGTERM
./server.py -d="/data" &
wait $!