1
0
Fork 0
mirror of https://github.com/imtbl/hydrus-server-docker synced 2024-06-27 18:50:40 +12:00
hydrus-server-docker/docker-entrypoint.sh

12 lines
104 B
Bash
Raw Normal View History

2018-11-30 04:49:02 +13:00
#!/bin/bash
2018-12-06 11:54:07 +13:00
stop() {
2018-11-30 04:49:02 +13:00
./server stop -d="/data"
}
2018-12-06 11:54:07 +13:00
trap "stop" SIGTERM
2018-11-30 04:49:02 +13:00
./server -d="/data" &
wait $!