This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zaloguj się
iru
/
mongod
Obserwuj
5
Polub
0
Forkuj
0
Pliki
Problemy
0
Oczekujące zmiany
0
Wiki
Drzewo:
257e70ab32
Gałęzie
Tagi
master
mongod
/
docker-entrypoint.sh
docker-entrypoint.sh
109 B
Historia
Czysty
1
2
3
4
5
6
7
8
#!/bin/sh
trap cleanup SIGTERM EXIT
cleanup()
{
pkill -2 mongod
}
exec "/usr/bin/mongod" "$@" &
wait