Study room project which helps you create a room for studying with friends
These instructions will help you get a copy of the project up and running on your local machine.
Ensure that you have the following software installed on your machine:
- Docker: Installation Guide
-
Clone the repository to your local machine by running the following command in your terminal:
git clone https://github.com/your-username/study-room
-
Navigate to the project directory:
cd study-room
-
Build the Docker image: Build the Docker image using the provided Dockerfile. Open a terminal in the project directory and run:
docker build -t your-docker-username/study-room:tag .
Replace your-docker-username/study-room:tag with the desired name and tag for your Docker image.
-
Run the Docker container:
Once the Docker image is built, run the Docker container with the following command:
docker run -p 3000:3000 your-docker-username/study-room:tag
Adjust the port mapping (-p) if your application uses a different port.
-
Access your application in a web browser at http://localhost:3000.