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
>**NOTE** The console will pre-configure the host Cloud Foundry endpoint. No other CF instance can be registered unless the instructions in the section 'Enable Endpoints Dashboard to register additional Cloud Foundry endpoints' are followed.
21
+
2. Deploy Stratos using the [`splatform/stratos`](https://hub.docker.com/r/splatform/stratos) docker image
22
+
23
+
> **NOTE:** To deploy Stratos in this way the CF Docker support have to be [enabled](https://docs.cloudfoundry.org/adminguide/docker.html#enable).
24
+
25
+
- download [manifest-docker.yml](../manifest-docker.yml) or create your own manifest file:
26
+
```yaml
27
+
applications:
28
+
- name: console
29
+
docker:
30
+
image: splatform/stratos:stable
31
+
instances: 1
32
+
memory: 128M
33
+
disk_quota: 384M
34
+
```
35
+
- now, you can simply push it to Cloud Foundry:
36
+
```
37
+
cf push -f manifest-docker.yml
38
+
```
39
+
40
+
>**NOTE:** The console will pre-configure the host Cloud Foundry endpoint. No other CF instance can be registered unless the instructions in the section 'Enable Endpoints Dashboard to register additional Cloud Foundry endpoints' are followed.
43
41
All other deployment methods (helm, docker-compose, docker all-in-one, etc) allow the registration of multiple CF instances by default.
44
42
45
43
You will then be able to open a web browser and navigate to the console URL:
0 commit comments