diff --git a/charts/mongodb/Chart.yaml b/charts/mongodb/Chart.yaml
index e81db3b39637019baa2bead4882793dfe1e0b177..1286ceae19ffc455a3cc78d6785762e434a8d214 100644
--- a/charts/mongodb/Chart.yaml
+++ b/charts/mongodb/Chart.yaml
@@ -7,6 +7,6 @@ type: application
 maintainers:
   - name: groundhog2k
 
-version: 0.4.15
+version: 0.2.25
 
-appVersion: "5.0.14"
+appVersion: "4.2.23"
diff --git a/charts/mongodb/RELEASENOTES.md b/charts/mongodb/RELEASENOTES.md
index da36e857e4af69c4bbfa95fb8954d22e285e3dbe..7e97e818cc9f3662bec72dfcc4e04e0441b794ae 100644
--- a/charts/mongodb/RELEASENOTES.md
+++ b/charts/mongodb/RELEASENOTES.md
@@ -14,6 +14,7 @@
 | 0.2.22 | 4.2.23 | Upgraded to MongoDB 4.2.23 and implemented ReplicaSet deployment support |
 | 0.2.23 | 4.2.23 | Fixed pod initialization bug when deployed without replicaset |
 | 0.2.24 | 4.2.23 | Implemented support for more independent configuration of arbiters and hidden secondaries |
+| 0.2.25 | 4.2.23 | Fixed bug: Copy of custom scripts failed - thx @huber-and |
 | 0.3.8 | 4.4.11 | Implemented startupProbe support |
 | 0.3.9 | 4.4.12 | Upgraded to MongoDB 4.4.12 |
 | 0.3.10 | 4.4.13 | Implemented support for extra secrets and advanced configuration capabilites |
diff --git a/charts/mongodb/templates/scripts.yaml b/charts/mongodb/templates/scripts.yaml
index 1b37f5774d38fb89cad2a404ca243daa0ff64b74..ebfc98f8835684c79ea9a748c22c89e086bafecb 100644
--- a/charts/mongodb/templates/scripts.yaml
+++ b/charts/mongodb/templates/scripts.yaml
@@ -411,11 +411,11 @@ data:
       cp /scripts/0*-init-*.sh /initscripts
       if [ -d /extrascripts ]; then
         echo "Copy extra scripts"
-        cp /extrascripts/* /scripts
+        cp /extrascripts/* /initscripts
       fi
       if [ -d /customscripts ]; then
         echo "Copy custom scripts"
-        cp /customscripts/* /scripts
+        cp /customscripts/* /initscripts
       fi
     fi
     # Copy extra initialization scripts for ReplicaSet cluster