FAIRmodels-validator Dashboard is a web application that allows users to validate their FAIRmodels.
This project includes Docker configuration for easy deployment and development. Follow these steps to run the application using Docker:
- Docker installed on your system
- Docker Compose installed on your system
- Clone the repository:
git clone https://github.com/your-username/FAIRmodels-validator.git
cd FAIRmodels-validator
- Build and start the containers:
docker compose up --build
This will:
- Build the frontend container
- Start the development server
- The application will be available at
http://localhost:5173
- The frontend application is configured with hot-reload enabled
- Any changes made to the source code will automatically reflect in the running container
- Logs will be visible in the terminal where you ran
docker compose up
To stop the running containers:
docker compose down
- View running containers:
docker ps
- View container logs:
docker compose logs frontend
- Rebuild containers after dependencies change:
docker compose up --build