This website works better with JavaScript
Domů
Procházet
Nápověda
Přihlásit se
iru
/
mongod
Sledovat
5
Oblíbit
0
Rozštěpit
0
Soubory
Úkoly
0
Pull Requesty
0
Wiki
Strom:
257e70ab32
Větve
Značky
master
mongod
/
docker-entrypoint.sh
docker-entrypoint.sh
109 B
Historie
Surový
1
2
3
4
5
6
7
8
#!/bin/sh
trap cleanup SIGTERM EXIT
cleanup()
{
pkill -2 mongod
}
exec "/usr/bin/mongod" "$@" &
wait