From 02bc1df0c11a033f651065c00cff7f1b331e4e7e Mon Sep 17 00:00:00 2001 From: Daniel Luiz Alves Date: Tue, 6 May 2025 11:02:00 -0300 Subject: [PATCH] docs: update docker image tags to 'latest' in installation guide This change ensures that the installation guide uses the 'latest' tag for docker images instead of the specific 'v2.0.0-beta' version, making it easier for users to always get the most recent version without manually updating the tag. --- apps/docs/content/docs/2.0.0-beta/installation.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/docs/content/docs/2.0.0-beta/installation.mdx b/apps/docs/content/docs/2.0.0-beta/installation.mdx index ea3899b..6e2d07a 100644 --- a/apps/docs/content/docs/2.0.0-beta/installation.mdx +++ b/apps/docs/content/docs/2.0.0-beta/installation.mdx @@ -30,7 +30,7 @@ Below is the complete content of our `docker-compose.yaml` that can be copied di ```yaml services: palmr-api: - image: kyantech/palmr-api:v2.0.0-beta # Make sure to use the correct version (latest) of the image + image: kyantech/palmr-api:latest # Make sure to use the correct version (latest) of the image container_name: palmr-api depends_on: postgres: @@ -61,7 +61,7 @@ services: start_period: 30s palmr-app: - image: kyantech/palmr-app:v2.0.0-beta # Make sure to use the correct version (latest) of the image + image: kyantech/palmr-app:latest # Make sure to use the correct version (latest) of the image container_name: palmr-web depends_on: palmr-api: