1
0
Fork 0
mirror of https://github.com/imtbl/hydrus-server-docker synced 2024-05-02 11:42:57 +12:00
hydrus-server-docker/docker-entrypoint.sh
2018-11-29 16:57:57 +01:00

12 lines
118 B
Bash

#!/bin/bash
stop_server() {
./server stop -d="/data"
}
trap "stop_server" SIGTERM
./server -d="/data" &
wait $!