You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tz...@apache.org on 2020/03/28 15:42:02 UTC

[flink-statefun] 10/13: [FLINK-16838] Update image name in docs and README.

This is an automated email from the ASF dual-hosted git repository.

tzulitai pushed a commit to branch release-2.0
in repository https://gitbox.apache.org/repos/asf/flink-statefun.git

commit bc3c4246440ac19aed69377ccdf330a0a242799d
Author: Tzu-Li (Gordon) Tai <tz...@apache.org>
AuthorDate: Sat Mar 28 14:28:43 2020 +0800

    [FLINK-16838] Update image name in docs and README.
---
 README.md                                   | 2 +-
 docs/deployment-and-operations/packaging.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 02a09c3..2d9e166 100755
--- a/README.md
+++ b/README.md
@@ -184,7 +184,7 @@ submitted to a Flink cluster.
 Below is an example Dockerfile for building an image for an application called `statefun-example`:
 
 ```
-FROM statefun
+FROM flink-statefun[:version-tag]
 
 RUN mkdir -p /opt/statefun/modules/statefun-example
 COPY target/statefun-example*jar /opt/statefun/modules/statefun-example/
diff --git a/docs/deployment-and-operations/packaging.md b/docs/deployment-and-operations/packaging.md
index 5507666..e6a11c4 100644
--- a/docs/deployment-and-operations/packaging.md
+++ b/docs/deployment-and-operations/packaging.md
@@ -38,7 +38,7 @@ The provided base image allows teams to package their applications with all the
 Below is an example Dockerfile for building a Stateful Functions image with both an [embedded module]({{ site.baseurl }}/sdk/modules.html#embedded-module) and a [remote module]({{ site.baseurl }}/sdk/modules.html#remote-module) for an application called ``statefun-example``.
 
 {% highlight dockerfile %}
-FROM statefun
+FROM flink-statefun:{{ site.version }}
 
 RUN mkdir -p /opt/statefun/modules/statefun-example
 RUN mkdir -p /opt/statefun/modules/remote