Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@

# TODO: Make docker compose setup production ready
# SCRUM-30

name: julep

include:
- ./memory-store/docker-compose.yml
- path: ./memory-store/docker-compose.yml
profiles:
- local-db
- ./gateway/docker-compose.yml
- ./agents-api/docker-compose.yml
- ./scheduler/docker-compose.yml
- path: ./scheduler/docker-compose.yml
profiles:
- self-hosted-temporal
- ./llm-proxy/docker-compose.yml
- ./integrations-service/docker-compose.yml
- ./monitoring/docker-compose.yml
Expand Down
5 changes: 3 additions & 2 deletions documentation/advanced/localsetup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ You can run the project in two different modes: **Single Tenant** or **Multi-Ten
Run the project in single-tenant mode:

```bash
docker compose --env-file .env --profile temporal-ui --profile single-tenant --profile self-hosted-db --profile blob-store --profile temporal-ui-public up --build --force-recreate --watch
docker compose --env-file .env --profile temporal-ui --profile single-tenant --profile self-hosted-db --profile blob-store --profile temporal-ui-public --profile self-hosted-temporal --profile local-db up --build --force-recreate --watch
```

> **Note:** In single-tenant mode, you can interact with the SDK directly without the need for the API KEY.
Expand All @@ -62,7 +62,8 @@ docker compose --env-file .env --profile temporal-ui --profile single-tenant --p
Run the project in multi-tenant mode:

```bash
docker compose --env-file .env --profile temporal-ui --profile multi-tenant --profile self-hosted-db --profile blob-store --profile temporal-ui-public up --build --force-recreate --watch
docker compose --env-file .env --profile temporal-ui --profile multi-tenant --profile self-hosted-db --profile blob-store --profile temporal-ui-public --profile self-hosted-temporal --profile local-db up --build --force-recreate --watch

```

> **Note:** In multi-tenant mode, you need to generate a JWT token locally that act as an API KEY to interact with the SDK.
Expand Down