Spaces:
Runtime error
Runtime error
Commit
•
0505452
1
Parent(s):
88c54bb
Update entrypoint.sh.template
Browse files- entrypoint.sh.template +2 -2
entrypoint.sh.template
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
|
3 |
# Make sure `/data/db` directory exists even with persistent storage
|
4 |
mkdir -p /data/db
|
5 |
-
# If app crashed, mongo didn't gracefully stopped. Remove old
|
6 |
-
rm -f
|
7 |
# Start the local Mongo database
|
8 |
mongod &
|
9 |
|
|
|
2 |
|
3 |
# Make sure `/data/db` directory exists even with persistent storage
|
4 |
mkdir -p /data/db
|
5 |
+
# If app crashed, mongo didn't gracefully stopped. Remove all the old *.lock files
|
6 |
+
find . -name ".lock" -type f -exec rm -f {} \;
|
7 |
# Start the local Mongo database
|
8 |
mongod &
|
9 |
|