Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ANCHOR-963] Event processor not started in the stellar docs docker compose example #1267

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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
39 changes: 11 additions & 28 deletions ap_versioned_docs/version-2.10/admin-guide/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,14 @@ Let's create a minimal compose file to get started.
services:
sep-server:
image: stellar/anchor-platform:2.10.0
command: --sep-server
ports:
- "8080:8080"
env_file:
- ./dev.env
volumes:
- ./config:/home
platform-server:
image: stellar/anchor-platform:2.10.0
command: --platform-server
ports:
- "8085:8085"
env_file:
- ./dev.env
volumes:
- ./config:/home
command: --sep-server --platform-server --event-processor
ports:
- "8080:8080"
- "8085:8085"
env_file:
- ./dev.env
volumes:
- ./config:/home
```

</CodeExample>
Expand All @@ -54,6 +46,8 @@ The `--sep-server` option tells the Anchor Platform to make the API endpoints de

The `--platform-sever` option makes the Platform API available, which is the backend API your service(s) will use to communicate with the Anchor Platform. It will be available on port 8085

The `--event-server` option makes the Event Processor available, which drives the communication between the Anchor Platform services and the business server.

## Configuration

The Anchor Platform supports two approaches for configuration:
Expand Down Expand Up @@ -210,18 +204,7 @@ version: "3.8"
services:
sep-server:
image: stellar/anchor-platform:2.10.0
command: --sep-server
env_file:
- ./dev.env
volumes:
- ./config:/home
ports:
- "8080:8080"
depends_on:
- db
platform-server:
image: stellar/anchor-platform:2.10.0
command: --platform-server
command: --sep-server --platform-server --event-processor
env_file:
- ./dev.env
volumes:
Expand Down
12 changes: 1 addition & 11 deletions ap_versioned_docs/version-2.10/admin-guide/sep31/integration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,23 +30,13 @@ version: "3.8"
services:
sep-server:
image: stellar/anchor-platform:2.10.0
command: --sep-server
command: --sep-server --platform-server --event-processor
env_file:
- ./dev.env
volumes:
- ./config:/home
ports:
- "8080:8080"
depends_on:
- db
platform-server:
image: stellar/anchor-platform:2.10.0
command: --platform-server
env_file:
- ./dev.env
volumes:
- ./config:/home
ports:
- "8085:8085"
depends_on:
- db
Expand Down
25 changes: 4 additions & 21 deletions ap_versioned_docs/version-2.11/admin-guide/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,9 @@ Let's create a minimal compose file to get started.
services:
sep-server:
image: stellar/anchor-platform:2.11.0
command: --sep-server
command: --sep-server --platform-server --event-processor
ports:
- "8080:8080"
env_file:
- ./dev.env
volumes:
- ./config:/home
platform-server:
image: stellar/anchor-platform:2.11.0
command: --platform-server
ports:
- "8085:8085"
env_file:
- ./dev.env
Expand All @@ -54,6 +46,8 @@ The `--sep-server` option tells the Anchor Platform to make the API endpoints de

The `--platform-sever` option makes the Platform API available, which is the backend API your service(s) will use to communicate with the Anchor Platform. It will be available on port 8085

The `--event-server` option makes the Event Processor available, which drives the communication between the Anchor Platform services and the business server.

## Configuration

The Anchor Platform supports two approaches for configuration:
Expand Down Expand Up @@ -210,18 +204,7 @@ version: "3.8"
services:
sep-server:
image: stellar/anchor-platform:2.11.0
command: --sep-server
env_file:
- ./dev.env
volumes:
- ./config:/home
ports:
- "8080:8080"
depends_on:
- db
platform-server:
image: stellar/anchor-platform:2.11.0
command: --platform-server
command: --sep-server --platform-server --event-processor
env_file:
- ./dev.env
volumes:
Expand Down
12 changes: 1 addition & 11 deletions ap_versioned_docs/version-2.11/admin-guide/sep31/integration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,23 +30,13 @@ version: "3.8"
services:
sep-server:
image: stellar/anchor-platform:2.11.0
command: --sep-server
command: --sep-server --platform-server --event-processor
env_file:
- ./dev.env
volumes:
- ./config:/home
ports:
- "8080:8080"
depends_on:
- db
platform-server:
image: stellar/anchor-platform:2.11.0
command: --platform-server
env_file:
- ./dev.env
volumes:
- ./config:/home
ports:
- "8085:8085"
depends_on:
- db
Expand Down
24 changes: 3 additions & 21 deletions ap_versioned_docs/version-2.8/admin-guide/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,9 @@ Let's create a minimal compose file to get started.
services:
sep-server:
image: stellar/anchor-platform:2.8.4
command: --sep-server
command: --sep-server --platform-server --event-processor
ports:
- "8080:8080"
env_file:
- ./dev.env
volumes:
- ./config:/home
platform-server:
image: stellar/anchor-platform:2.8.4
command: --platform-server
ports:
- "8085:8085"
env_file:
- ./dev.env
Expand All @@ -54,6 +46,7 @@ The `--sep-server` option tells the Anchor Platform to make the API endpoints de

The `--platform-sever` option makes the Platform API available, which is the backend API your service(s) will use to communicate with the Anchor Platform. It will be available on port 8085

The `--event-server` option makes the Event Processor available, which drives the communication between the Anchor Platform services and the business server.
## Configuration

The Anchor Platform supports two approaches for configuration:
Expand Down Expand Up @@ -210,18 +203,7 @@ version: "3.8"
services:
sep-server:
image: stellar/anchor-platform:2.8.4
command: --sep-server
env_file:
- ./dev.env
volumes:
- ./config:/home
ports:
- "8080:8080"
depends_on:
- db
platform-server:
image: stellar/anchor-platform:2.8.4
command: --platform-server
command: --sep-server --platform-server --event-processor
env_file:
- ./dev.env
volumes:
Expand Down
30 changes: 10 additions & 20 deletions ap_versioned_docs/version-2.8/admin-guide/sep31/integration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,26 +30,16 @@ version: "3.8"
services:
sep-server:
image: stellar/anchor-platform:2.8.4
command: --sep-server
env_file:
- ./dev.env
volumes:
- ./config:/home
ports:
- "8080:8080"
depends_on:
- db
platform-server:
image: stellar/anchor-platform:2.8.4
command: --platform-server
env_file:
- ./dev.env
volumes:
- ./config:/home
ports:
- "8085:8085"
depends_on:
- db
command: --sep-server --platform-server --event-processor
env_file:
- ./dev.env
volumes:
- ./config:/home
ports:
- "8080:8080"
- "8085:8085"
depends_on:
- db

server:
build: .
Expand Down
11 changes: 2 additions & 9 deletions ap_versioned_docs/version-2.9/admin-guide/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,9 @@ Let's create a minimal compose file to get started.
services:
sep-server:
image: stellar/anchor-platform:2.9.0
command: --sep-server
command: --sep-server --platform-server --event-processor
ports:
- "8080:8080"
env_file:
- ./dev.env
volumes:
- ./config:/home
platform-server:
image: stellar/anchor-platform:2.9.0
command: --platform-server
ports:
- "8085:8085"
env_file:
- ./dev.env
Expand All @@ -54,6 +46,7 @@ The `--sep-server` option tells the Anchor Platform to make the API endpoints de

The `--platform-sever` option makes the Platform API available, which is the backend API your service(s) will use to communicate with the Anchor Platform. It will be available on port 8085

The `--event-server` option makes the Event Processor available, which drives the communication between the Anchor Platform services and the business server.
## Configuration

The Anchor Platform supports two approaches for configuration:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,13 @@ services:
- db
platform-server:
image: stellar/anchor-platform:2.9.0
command: --platform-server
command: --sep-server --platform-server --event-processor
env_file:
- ./dev.env
volumes:
- ./config:/home
ports:
- "8080:8080"
- "8085:8085"
depends_on:
- db
Expand Down
40 changes: 11 additions & 29 deletions ap_versioned_docs/version-3.0/admin-guide/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,15 @@ Let's create a minimal compose file to get started.
# docker-compose.yml
services:
sep-server:
image: stellar/anchor-platform:latest
command: --sep-server
ports:
- "8080:8080"
env_file:
- ./dev.env
volumes:
- ./config:/home
platform-server:
image: stellar/anchor-platform:latest
command: --platform-server
ports:
- "8085:8085"
env_file:
- ./dev.env
volumes:
- ./config:/home
image: stellar/anchor-platform:3.0.0
command: --sep-server --platform-server --event-processor
ports:
- "8080:8080"
- "8085:8085"
env_file:
- ./dev.env
volumes:
- ./config:/home
```

</CodeExample>
Expand All @@ -54,6 +46,7 @@ The `--sep-server` option tells the Anchor Platform to make the API endpoints de

The `--platform-sever` option makes the Platform API available, which is the backend API your service(s) will use to communicate with the Anchor Platform. It will be available on port 8085

The `--event-server` option makes the Event Processor available, which drives the communication between the Anchor Platform services and the business server.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
The `--event-server` option makes the Event Processor available, which drives the communication between the Anchor Platform services and the business server.
The `--event-processor` option makes the Event Processor available, which drives the communication between the Anchor Platform services and the business server.

## Configuration

The Anchor Platform supports two approaches for configuration:
Expand Down Expand Up @@ -208,18 +201,7 @@ version: "3.8"
services:
sep-server:
image: stellar/anchor-platform:latest
command: --sep-server
env_file:
- ./dev.env
volumes:
- ./config:/home
ports:
- "8080:8080"
depends_on:
- db
platform-server:
image: stellar/anchor-platform:latest
command: --platform-server
command: --sep-server --platform-server --event-processor
env_file:
- ./dev.env
volumes:
Expand Down
12 changes: 1 addition & 11 deletions ap_versioned_docs/version-3.0/admin-guide/sep31/integration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,23 +28,13 @@ version: "3.8"
services:
sep-server:
image: stellar/anchor-platform:latest
command: --sep-server
command: --sep-server --platform-server --event-processor
env_file:
- ./dev.env
volumes:
- ./config:/home
ports:
- "8080:8080"
depends_on:
- db
platform-server:
image: stellar/anchor-platform:latest
command: --platform-server
env_file:
- ./dev.env
volumes:
- ./config:/home
ports:
- "8085:8085"
depends_on:
- db
Expand Down
Loading