-
Notifications
You must be signed in to change notification settings - Fork 199
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
3 changed files
with
37 additions
and
0 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
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
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# formsflow.ai Redis | ||
|
||
This repository contains a Docker Compose configuration to set up a lightweight Redis service using the official Redis Alpine image. | ||
|
||
|
||
## Table of Content | ||
|
||
1. [Prerequisites](#prerequisites) | ||
2. [Running the Application](#running-the-application) | ||
|
||
## Prerequisites | ||
|
||
* For docker based installation [Docker](https://docker.com) need to be installed. | ||
|
||
### Running the Application | ||
|
||
* forms-flow-redis service uses port 6379, make sure the port is available. | ||
* `cd {Your Directory}/forms-flow-ai/forms-flow-redis` | ||
|
||
* Run `docker-compose up -d` to start. | ||
|
||
#### To Stop the Application | ||
|
||
* Run `docker-compose stop` to stop. | ||
|
||
### Important Note | ||
|
||
The forms-flow-redis service must be up and running before installing and starting the following services: | ||
|
||
- forms-flow-api | ||
- forms-flow-documents-api | ||
|
||
Ensure that Redis is functional and accessible on port 6379 before proceeding with the installation of these dependent services. Failure to start forms-flow-redis first may result in errors during the initialization or runtime of the dependent applications. |