This website works better with JavaScript
Ana Sayfa
Keşfet
Yardım
Giriş Yap
iru
/
mongod
İzle
5
Yıldızla
0
Çatalla
0
Dosyalar
Sorunlar
0
Değişiklik İstekleri
0
Wiki
Ağaç:
257e70ab32
Dallar
Biçim İmleri
master
mongod
/
docker-entrypoint.sh
docker-entrypoint.sh
109 B
Geçmiş
Ham
1
2
3
4
5
6
7
8
#!/bin/sh
trap cleanup SIGTERM EXIT
cleanup()
{
pkill -2 mongod
}
exec "/usr/bin/mongod" "$@" &
wait