Skip to content

Commit ee72f39

Browse files
authored
docs: fix standalone compose port binding examples (#450)
1 parent ccb2229 commit ee72f39

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

docs/EXAMPLES.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ services:
4949
- SPLUNK_START_ARGS=--accept-license
5050
- SPLUNK_PASSWORD
5151
ports:
52-
- 8000
52+
- 8000:8000
5353
```
5454
</details><p></p>
5555
@@ -75,7 +75,7 @@ services:
7575
- SPLUNK_LICENSE_URI=http://company.com/path/to/splunk.lic
7676
- SPLUNK_PASSWORD
7777
ports:
78-
- 8000
78+
- 8000:8000
7979
```
8080
</details><p></p>
8181
@@ -93,7 +93,7 @@ services:
9393
- SPLUNK_LICENSE_URI=/tmp/license/splunk.lic
9494
- SPLUNK_PASSWORD
9595
ports:
96-
- 8000
96+
- 8000:8000
9797
volumes:
9898
- ./splunk.lic:/tmp/license/splunk.lic
9999
```
@@ -121,7 +121,8 @@ services:
121121
- SPLUNK_HEC_TOKEN=abcd1234
122122
- SPLUNK_PASSWORD
123123
ports:
124-
- 8000
124+
- 8000:8000
125+
- 8088:8088
125126
```
126127
</details><p></p>
127128
@@ -153,7 +154,7 @@ services:
153154
- SPLUNK_APPS_URL=http://company.com/path/to/app.tgz
154155
- SPLUNK_PASSWORD
155156
ports:
156-
- 8000
157+
- 8000:8000
157158
```
158159
</details><p></p>
159160
@@ -181,7 +182,7 @@ services:
181182
- SPLUNKBASE_PASSWORD
182183
- SPLUNK_PASSWORD
183184
ports:
184-
- 8000
185+
- 8000:8000
185186
```
186187
</details><p></p>
187188

0 commit comments

Comments
 (0)