Browse Source

undo changes

OBT-SYSADM\tomishinets 6 years ago
parent
commit
732dcd64b7
2 changed files with 1 additions and 12 deletions
  1. 1 4
      Dockerfile
  2. 0 8
      run.sh

+ 1 - 4
Dockerfile

@@ -1,6 +1,3 @@
 FROM mongo:4.0
-CMD ["/run.sh"]
 COPY mongo-healthcheck.sh /mongo-healthcheck.sh
-COPY run.sh /run.sh
-RUN chmod +x /mongo-healthcheck.sh \
-    && chmod +x /run.sh
+RUN chmod +x /mongo-healthcheck.sh

+ 0 - 8
run.sh

@@ -1,8 +0,0 @@
-#!/bin/sh
-trap cleanup 0 1 2 3 6 15
-cleanup()
-  {
-    pkill -2 mongod
-  }
-exec "/usr/bin/mongod" "$@" &
-wait