This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add support for JDK17 in the docker containers * Docker compose for redis, postgres and mysql with Elasticsearch7 co-author: @manan164
- Loading branch information
Showing
26 changed files
with
301 additions
and
538 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,51 @@ | ||
[Docker Instructions](/docs/docs/gettingstarted/docker.md) | ||
|
||
# Conductor Docker Builds | ||
|
||
## Pre-built docker images | ||
|
||
Conductor server with support for the following backend: | ||
1. Redis | ||
2. Postgres | ||
3. Mysql | ||
4. Cassandra | ||
|
||
### Docker File for Server and UI | ||
|
||
[Docker Image Source for Server with UI](docker/server/DockerFile) | ||
|
||
### Configuration Guide for Conductor Server | ||
Conductor uses a persistent store for managing state. | ||
The choice of backend is quite flexible and can be configured at runtime using `conductor.db.type` property. | ||
|
||
Refer to the table below for various supported backend and required configurations to enable each of them. | ||
|
||
> [!IMPORTANT] | ||
> | ||
> See [config.properties](docker/server/config/config.properties) for the required properties for each of the backends. | ||
> | ||
> | Backend | Property | | ||
> |------------|------------------------------------| | ||
> | postgres | conductor.db.type=postgres | | ||
> | redis | conductor.db.type=redis_standalone | | ||
> | mysql | conductor.db.type=mysql | | ||
> | cassandra | conductor.db.type=cassandra | | ||
> | ||
Conductor using Elasticsearch for indexing the workflow data. | ||
Currently, Elasticsearch 6 and 7 are supported. | ||
|
||
We welcome community contributions for other indexing backends. | ||
|
||
**Note:** Docker images use Elasticsearch 7. | ||
|
||
## Helm Charts | ||
TODO: Link to the helm charts | ||
|
||
## Run Docker Compose Locally | ||
### Use the docker-compose to bring up the local conductor server. | ||
|
||
| Docker Compose | Description | | ||
|--------------------------------------------------------------|----------------------------| | ||
| [docker-compose.yaml](docker-compose.yaml) | Redis + Elasticsearch 7 | | ||
| [docker-compose-postgres.yaml](docker-compose-postgres.yaml) | Postgres + Elasticsearch 7 | | ||
| [docker-compose-postgres.yaml](docker-compose-mysql.yaml) | Mysql + Elasticsearch 7 | |
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.