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
Copy file name to clipboardExpand all lines: installation/docker.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,11 @@
2
2
3
3
Fluent Bit container images are available on Docker Hub ready for production usage. Current available images can be deployed in multiple architectures.
4
4
5
-
###Quick Start
5
+
## Quick Start
6
6
7
7
Get started by simply typing the following command:
8
8
9
-
```
9
+
```shell
10
10
docker run -ti cr.fluentbit.io/fluent/fluent-bit
11
11
```
12
12
@@ -16,6 +16,10 @@ The following table describes the tags that are available on Docker Hub [fluent/
Copy file name to clipboardExpand all lines: installation/windows.md
+28-28Lines changed: 28 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Fluent Bit has two flavours of Windows installers: a ZIP archive (for quick test
7
7
8
8
Make sure to provide a valid Windows configuration with the installation, a sample one is shown below:
9
9
10
-
```
10
+
```python
11
11
[SERVICE]
12
12
# Flush
13
13
# =====
@@ -80,19 +80,19 @@ Both are currently provided to allow migration.
80
80
81
81
## Installation Packages
82
82
83
-
The latest stable version is 1.9.7, each version is available on the Github release as well as at `https://fluentbit.io/releases/<Major Version>/Major>fluent-bit-<Full Version>-win[32|64].exe`:
83
+
The latest stable version is 1.9.9, each version is available on the Github release as well as at `https://fluentbit.io/releases/<Major Version>/Major>fluent-bit-<Full Version>-win[32|64].exe`:
To check the integrity, use `Get-FileHash` cmdlet on PowerShell.
93
93
94
-
```
95
-
PS> Get-FileHash fluent-bit-1.9.7-win32.exe
94
+
```powershell
95
+
PS> Get-FileHash fluent-bit-1.9.9-win32.exe
96
96
```
97
97
98
98
## Installing from ZIP archive
@@ -101,13 +101,13 @@ Download a ZIP archive from above. There are installers for 32-bit and 64-bit en
101
101
102
102
Then you need to expand the ZIP archive. You can do this by clicking "Extract All" on Explorer, or if you're using PowerShell, you can use `Expand-Archive` cmdlet.
103
103
104
-
```
105
-
PS> Expand-Archive fluent-bit-1.9.7-win64.zip
104
+
```powershell
105
+
PS> Expand-Archive fluent-bit-1.9.9-win64.zip
106
106
```
107
107
108
108
The ZIP package contains the following set of files.
109
109
110
-
```
110
+
```text
111
111
fluent-bit
112
112
├── bin
113
113
│ ├── fluent-bit.dll
@@ -126,13 +126,13 @@ fluent-bit
126
126
127
127
Now, launch cmd.exe or PowerShell on your machine, and execute `fluent-bit.exe` as follows.
128
128
129
-
```
129
+
```powershell
130
130
PS> .\bin\fluent-bit.exe -i dummy -o stdout
131
131
```
132
132
133
133
If you see the following output, it's working fine!
134
134
135
-
```
135
+
```powershell
136
136
PS> .\bin\fluent-bit.exe -i dummy -o stdout
137
137
Fluent Bit v1.9.x
138
138
* Copyright (C) 2019-2020 The Fluent Bit Authors
@@ -162,22 +162,22 @@ Choose one which is suitable for you.
The Windows installer is built by [`CPack` using NSIS(https://cmake.org/cmake/help/latest/cpack_gen/nsis.html) and so supports the [default options](https://nsis.sourceforge.io/Docs/Chapter3.html#3.2.1) that all NSIS installers do for silent installation and the directory to install to.
176
+
The Windows installer is built by [`CPack` using NSIS(<https://cmake.org/cmake/help/latest/cpack_gen/nsis.html>) and so supports the [default options](https://nsis.sourceforge.io/Docs/Chapter3.html#3.2.1) that all NSIS installers do for silent installation and the directory to install to.
177
177
178
178
To silently install to `C:\fluent-bit` directory here is an example:
179
179
180
-
```
180
+
```powershell
181
181
PS> <installer exe> /S /D=C:\fluent-bit
182
182
```
183
183
@@ -190,7 +190,7 @@ Windows services are equivalent to "daemons" in UNIX (i.e. long-running backgrou
190
190
191
191
Suppose you have the following installation layout:
192
192
193
-
```
193
+
```text
194
194
C:\fluent-bit\
195
195
├── conf
196
196
│ ├── fluent-bit.conf
@@ -204,13 +204,13 @@ C:\fluent-bit\
204
204
205
205
To register Fluent Bit as a Windows service, you need to execute the following command on Command Prompt. Please be careful that a single space is required after `binpath=`.
0 commit comments