Skip to content

amosproj/amos2024ws02-backup-metadata-analyzer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AMOS Backup Metadata Analyzer

Prerequisites

Make sure the following are installed on your machine:

  • Node 20
  • Docker
  • Docker Compose

Docker Build Setup Instructions

  1. Clone the repository:

    git clone https://github.com/amosproj/amos2024ws02-backup-metadata-analyzer.git
    
  2. Change directory:

     cd ./amos2024ws02-backup-metadata-analyzer/
    
  3. Setup .env files:

    In the projects root folder, copy the .env.docker.example and rename the copy to .env.docker

  4. Copy database dump into project:

    Copy the database dump .dmp file into the projects root folder and rename it to db_dump.sql

  5. Build Docker container:

     docker compose --env-file .env.docker build --no-cache
    
  6. Start Docker container:

     docker compose --env-file .env.docker up
    
  7. Stop Docker Container:

     docker compose --env-file .env.docker down