This website works better with JavaScript
Domovská stránka
Prehľadávať
Pomoc
Prihlásiť sa
iru
/
mongod
Pridať medzi pozorované
5
Hviezda
0
Fork
0
Súbory
Issues
0
Pull requesty
0
Wiki
Strom:
2e835e50ad
Branche
Tagy
master
mongod
/
docker-entrypoint.sh
docker-entrypoint.sh
109 B
História
Raw
1
2
3
4
5
6
7
8
#!/bin/sh
trap cleanup SIGTERM EXIT
cleanup()
{
pkill -2 mongod
}
exec "/usr/bin/mongod" "$@" &
wait