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

fix readme command to run symphony via docker #419

Merged
Merged
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ maestro up
### Using Helm
You can also install Symphony using Helm by running the following command:
```Bash
helm install symphony oci://ghcr.io/eclipse-symphony/helm/symphony --version '0.47.2'
helm install symphony oci://ghcr.io/eclipse-symphony/helm/symphony --version '0.48.28'
```
After Symphony is installed, you can use maestro to try out sample scenarios.

### Using Docker
You can also install Symphony using Docker by running the following command:
You can also install Symphony using Docker with the bundled `symphony-api.json` or volume mounting your own & injecting its reference via `CONFIG` env:
```Bash
docker run -d --name symphony-api -p 8080:8080 ghcr.io/eclipse-symphony/symphony-api:0.47.1
docker run -d --name symphony-api -p 8080:8080 -e CONFIG=/symphony-api.json ghcr.io/eclipse-symphony/symphony-api:0.48.28
```
### Using symphony-api binary
You can also run Symphony in standalone mode as a single process by running the following command:
Expand Down
Loading