From 09de179d16cb54c7fe08a677aa391a6c42a8c456 Mon Sep 17 00:00:00 2001 From: Vincent Date: Thu, 3 Aug 2023 10:37:44 +0200 Subject: [PATCH] fix: docker custom image (#1484) --- docs/kratos/guides/docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kratos/guides/docker.md b/docs/kratos/guides/docker.md index ec7dcd7cf..371418d44 100644 --- a/docs/kratos/guides/docker.md +++ b/docs/kratos/guides/docker.md @@ -95,6 +95,6 @@ You can create custom Kratos Docker images that embed your configuration files b base image and adding your configuration file(s) as shown in the example: ```dockerfile -FROM oryd/kratos:latest +FROM oryd/kratos:{version} COPY contrib/quickstart/kratos/email-password/kratos.yml /home/ory ```