gabrielmbmb HF staff commited on
Commit
963605b
1 Parent(s): 6d748c7

Update entrypoint.sh.template

Browse files
Files changed (1) hide show
  1. entrypoint.sh.template +1 -1
entrypoint.sh.template CHANGED
@@ -3,7 +3,7 @@
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
 
 
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 /data/db -name "*.lock" -type f -exec rm -f {} \;
7
  # Start the local Mongo database
8
  mongod &
9