You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Add the solace broker container to the same SAM network
229
247
```
230
248
docker network connect sam-network solace
231
249
```
250
+
```
251
+
podman network connect sam-network solace
252
+
```
232
253
1. Open `.env` file and make the following changes
233
254
- `SOLACE_BROKER_URL="ws://solace:8008"` - Update the broker URL to use the solace broker container
234
255
- `FASTAPI_HOST="0.0.0.0"` - This where the webUI Gateway is hosted on the SAM Enterprise container. We change it to `0.0.0.0` to make sure its reachable by host
@@ -270,6 +291,16 @@ This step is involved with running SAM enterprise with the new files generated.
270
291
docker compose up
271
292
```
272
293
294
+
> aside positive
295
+
> If you are using `podman compose up` you will have to update your docker-compose.yaml file to make sure you are running podman as root. to do this add the following under your `image` name in the compose file
296
+
> ```
297
+
> user: root
298
+
> ```
299
+
300
+
```
301
+
podman compose up
302
+
```
303
+
273
304
> aside positive
274
305
> When the Solace Enterprise container runs, the entry point command for the container is `sam run`. What this command does is go through all the yaml configuration files under the configs dir and run them. At this point its only the orchestrator agent and web UI gateway.
0 commit comments