From 3554b9f72b17b5646920efe988b8c9f527637466 Mon Sep 17 00:00:00 2001 From: naskya Date: Tue, 26 Mar 2024 02:21:30 +0900 Subject: [PATCH] docs: update downgrade.md --- docs/downgrade.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/downgrade.md b/docs/downgrade.md index 833cd2edb6..fd104c3667 100644 --- a/docs/downgrade.md +++ b/docs/downgrade.md @@ -54,7 +54,7 @@ POSTGRES_USER=user_name # user name POSTGRES_DB=database_name # database name ``` -1. Change the image tag to `registry.firefish.dev/firefish/firefish:v20240206` +1. Change Firefish image tag from `latest` to `v20240206` ```sh vim docker-compose.yml ``` @@ -66,6 +66,9 @@ web: image: registry.firefish.dev/firefish/firefish:v20240206 # here ``` +1. Change database image from `docker.io/groonga/pgroonga` to `docker.io/postgres` + + Please make sure to use the same PostgreSQL version. For example, if you are using `docker.io/groonga/pgroonga:3.1.8-alpine-16`, you should change it to `docker.io/postgres:16-alpine`. PGroonga images are tagged as `{PGroonga version}-{alpine or debian}-{PostgreSQL major version}`. PostgreSQL image tags can be found at . 1. Start the container and confirm that Firefish is downgraded ```sh docker-compose up --detach