https://github.com/rishavconsolelog21/bluetick_task
Bluetick Task, To see user data in table, card and list format. Modal for adding and editing user.
https://github.com/rishavconsolelog21/bluetick_task
nextjs react typescript
Last synced: 3 months ago
JSON representation
Bluetick Task, To see user data in table, card and list format. Modal for adding and editing user.
- Host: GitHub
- URL: https://github.com/rishavconsolelog21/bluetick_task
- Owner: rishavConsoleLog21
- Created: 2024-10-19T10:16:13.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-21T18:53:44.000Z (over 1 year ago)
- Last Synced: 2025-03-11T07:33:58.887Z (over 1 year ago)
- Topics: nextjs, react, typescript
- Language: TypeScript
- Homepage: https://bluetick-task.vercel.app
- Size: 218 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Docker.md
Awesome Lists containing this project
README
# Project Setup using Docker Compose
Follow these steps to set up the project on your system using Docker Compose:
1. **Clone the Repository**
```sh
git clone
cd
```
2. **Install Docker and Docker Compose(Ignore If Already Installed)**
- Ensure Docker is installed on your system. You can download it from [Docker's official website](https://www.docker.com/get-started).
- Docker Compose is typically included with Docker Desktop. Verify installation by running:
```sh
docker --version
docker-compose --version
```
3. **Build and Start the Containers**
- Navigate to the directory containing the `docker-compose.yaml` file.
- Run the following command to build and start the containers:
```sh
docker-compose up --build
```
4. **Access the Application**
- Once the containers are up and running, you can access the application at `http://localhost:` (replace `` with the appropriate port number specified in your `docker-compose.yaml` that is `http://localhost:3000`).
5. **Stopping the Containers**
- To stop the running containers, use:
```sh
docker-compose down
```
6. **Additional Commands**
- To view the logs of a specific service:
```sh
docker-compose logs
```
- To run a command inside a running container:
```sh
docker-compose exec
```
For more detailed information, refer to the Docker Compose [documentation](https://docs.docker.com/compose/).