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: website/docs/quickstart/flink.md
+21-12Lines changed: 21 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -123,15 +123,15 @@ Congratulations, you are all set!
123
123
124
124
If you want to run with your own Flink environment, you can follow the steps below.
125
125
126
-
1. Create a `lib` directory. Download [fluss-flink connector jar](/downloads), [flink-connector-faker](https://github.com/knaufk/flink-faker/releases) and then put them to `lib`.
126
+
1. Create a Dockerfile named fluss.Dockerfile as follows:
127
127
128
-
2. Set the desired Flink version. For example:
129
-
130
-
```shell
131
-
export FLINK_VERSION=1.20.3
128
+
```yaml
129
+
FROM flink:1.20.2-scala_2.12
130
+
RUN wget -P /opt/flink/lib https://github.com/knaufk/flink-faker/releases/download/v0.5.3/flink-faker-0.5.3.jar
131
+
RUN wget -P /opt/flink/lib https://repo1.maven.org/maven2/org/apache/fluss/fluss-flink-1.20/0.8.0-incubating/fluss-flink-1.20-0.8.0-incubating.jar
132
132
```
133
133
134
-
3. Create a `docker-compose.yml` file with the following content:
134
+
2. Create a `docker-compose.yml` file with the following content:
0 commit comments