79e4b3ca08cb45b47f5c55b715c0aa7cbb4b7eee
README.md
| ... | ... | @@ -20,9 +20,9 @@ More background information is available in the project's Wiki which is currentl |
| 20 | 20 | |
| 21 | 21 | ## Quick Start with Docker Compose |
| 22 | 22 | |
| 23 | -If you have built or obtained the ``ghcr.io/sap/sailing-analytics:latest`` multi-platform image (currently available for linux/amd64 and linux/arm64 architectures), try this: |
|
| 23 | +To run the latest release build (currently available for linux/amd64 and linux/arm64 architectures), try this: |
|
| 24 | 24 | ``` |
| 25 | - cd docker |
|
| 25 | + wget "https://github.com/SAP/sailing-analytics/raw/refs/heads/main/docker/docker-compose.yml" |
|
| 26 | 26 | docker-compose up |
| 27 | 27 | ``` |
| 28 | 28 | Based on the ``docker/docker-compose.yml`` definition you should end up with three running Docker containers: |
| ... | ... | @@ -30,12 +30,12 @@ Based on the ``docker/docker-compose.yml`` definition you should end up with thr |
| 30 | 30 | - a RabbitMQ server, listening on default port |
| 31 | 31 | - a Sailing Analytics server, listening for HTTP requests on port 8888 and for telnet connections to the OSGi console on port 14888 |
| 32 | 32 | |
| 33 | -Try a request to [``http://127.0.0.1:8888/index.html``](http://127.0.0.1:8888/index.html) or [``http://127.0.0.1:8888/gwt/status``](http://127.0.0.1:8888/gwt/status) to see if things worked. |
|
| 33 | +Try a request to [``http://127.0.0.1:8888/index.html``](http://127.0.0.1:8888/index.html) or [``http://127.0.0.1:8888/gwt/status``](http://127.0.0.1:8888/gwt/status) to see if things worked. The default login to your local administration console at [``http://127.0.0.1:8888/gwt/AdminConsole.html``](http://127.0.0.1:8888/gwt/AdminConsole.html) uses the user name ``admin`` with password ``admin``. |
|
| 34 | 34 | |
| 35 | 35 | To use Java 25, use the ``docker-compose-25.yml`` file instead: |
| 36 | 36 | |
| 37 | 37 | ``` |
| 38 | - cd docker |
|
| 38 | + wget "https://github.com/SAP/sailing-analytics/raw/refs/heads/main/docker/docker-compose-25.yml" |
|
| 39 | 39 | docker-compose -f docker-compose-25.yml up |
| 40 | 40 | ``` |
| 41 | 41 |