Skip to content
Draft
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
20 changes: 8 additions & 12 deletions sources/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,19 @@

The steps below show how to run locally an AEMaaCS image that has embedded PureSight, WKND, and the AEM Connector.

1. Download the `aem-author-cloud.tar.gz` file with the image from Google Drive: https://drive.google.com/file/d/1XJXIlGntz5h-cI0ltFPq-zrEjQNcPeMh/view?usp=drive_link.
1. Build the `aem-author-cloud` Docker image as described in the https://github.com/streamx-dev/demo-puresight-aem/blob/main/README.md.

2. Load the downloaded image:
```bash
docker load < aem-author-cloud.tar.gz
```

3. Confirm the image loaded successfully:
```bash
docker images | grep aem-author-cloud
```
1. Run the Docker container with `./sources/start-aem.sh` script.

4. Run the Docker container.
You can optionally pass a **StreamX client URL** as the first argument and a **StreamX client auth token** as the second argument.
- If the second argument is not provided, it defaults to an empty token (no authentication is attempted).
- You can also **explicitly** pass an empty token by placing `""` as the second argument.

**Examples:**
```bash
# Run with the default URL and default token (default toke is empty)
./sources/start-aem.sh

# Pass URL only, token is empty by default
./sources/start-aem.sh http://host.docker.internal:8080

Expand All @@ -31,7 +25,9 @@ The steps below show how to run locally an AEMaaCS image that has embedded PureS
./sources/start-aem.sh https://my-streamx.example.com ""
```

5. Once the AEM instance is running, it is accessible at:
1. Once the AEM instance is running, it is accessible at:
```text
http://localhost:4502
```

1. To run a related StreamX instance that will be used by the AEM, refer to the main [README](../README.md).
4 changes: 4 additions & 0 deletions sources/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ services:
published: 4502
protocol: tcp
mode: host
- target: 8888
published: 8888
protocol: tcp
mode: host

volumes:
aem-author-cloud-data:
Expand Down