Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
3 changes: 2 additions & 1 deletion documentation/advanced/localsetup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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