forked from e-mission/op-admin-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
67 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,72 @@ | ||
#!/bin/bash | ||
|
||
# Directory of the script | ||
SCRIPT_DIR="$(dirname "$0")" | ||
|
||
# Path to the configuration file (one level up) | ||
CONFIG_FILE="$SCRIPT_DIR/../docker-compose-dev.yml" | ||
|
||
# Check if the correct number of arguments is provided | ||
if [ "$#" -ne 1 ]; then | ||
echo "Usage: $0 <mongodump-file>" | ||
echo " <mongodump-file> : The path to the MongoDB dump file to be restored." | ||
exit 1 | ||
fi | ||
|
||
MONGODUMP_FILE=$1 | ||
|
||
echo "Copying file to docker container" | ||
docker cp $MONGODUMP_FILE op-admin-dashboard-db-1:/tmp | ||
# Print debug information | ||
echo "Script Directory: $SCRIPT_DIR" | ||
echo "Configuration File Path: $CONFIG_FILE" | ||
echo "MongoDump File Path: $MONGODUMP_FILE" | ||
|
||
# Check if the provided file exists | ||
if [ ! -f "$MONGODUMP_FILE" ]; then | ||
echo "Error: File '$MONGODUMP_FILE' does not exist." | ||
exit 1 | ||
fi | ||
|
||
# Check if the configuration file exists | ||
if [ ! -f "$CONFIG_FILE" ]; then | ||
echo "Error: Configuration file '$CONFIG_FILE' does not exist." | ||
exit 1 | ||
fi | ||
|
||
# Print details about the configuration file | ||
echo "Configuration file details:" | ||
ls -l "$CONFIG_FILE" | ||
|
||
# Extract database name from the mongodump file | ||
TEMP_DIR=$(mktemp -d) | ||
tar -xf "$MONGODUMP_FILE" -C "$TEMP_DIR" | ||
DB_NAME=$(find "$TEMP_DIR/dump" -mindepth 1 -maxdepth 1 -type d -exec basename {} \;) | ||
|
||
if [ -z "$DB_NAME" ]; then | ||
echo "Error: Failed to extract database name from mongodump." | ||
exit 1 | ||
fi | ||
|
||
echo "Database Name: $DB_NAME" | ||
|
||
# Update the docker-compose configuration file with the actual DB_HOST | ||
DB_HOST="mongodb://db/$DB_NAME" | ||
sed -i.bak "s|DB_HOST:.*|DB_HOST: $DB_HOST|" "$CONFIG_FILE" | ||
|
||
echo "Updated docker-compose file:" | ||
cat "$CONFIG_FILE" | ||
|
||
echo "Copying file to Docker container" | ||
docker cp "$MONGODUMP_FILE" op-admin-dashboard-db-1:/tmp | ||
|
||
FILE_NAME=$(basename "$MONGODUMP_FILE") | ||
|
||
echo "Clearing existing database" | ||
docker exec op-admin-dashboard-db-1 bash -c 'mongo --eval "db.getMongo().getDBNames().forEach(function(d) { if (d !== \"admin\" && d !== \"local\") db.getSiblingDB(d).dropDatabase(); })"' | ||
|
||
FILE_NAME=`basename $MONGODUMP_FILE` | ||
echo "Restoring the dump from $FILE_NAME to database $DB_NAME" | ||
docker exec -e MONGODUMP_FILE=$FILE_NAME op-admin-dashboard-db-1 bash -c "cd /tmp && tar xvf $FILE_NAME && mongorestore -d $DB_NAME dump/$DB_NAME" | ||
|
||
echo "Restoring the dump from $FILE_NAME" | ||
docker exec -e MONGODUMP_FILE=$FILE_NAME op-admin-dashboard-db-1 bash -c 'cd /tmp && tar xvf $MONGODUMP_FILE && mongorestore' | ||
echo "Database restore complete." | ||
|
||
# Clean up temporary directory | ||
rm -rf "$TEMP_DIR" |