mediacms

Installation

install tutorial
config user/passwd.
Pasted image 20230521133051.png

config restart policy
Pasted image 20230521133133.png

更新版本

port change
Pasted image 20231124003510.png

Pasted image 20231123020919.png

postgre升级之后已有数据格式存在不匹配,需要进行调整
docker compose up报错显示我的数据格式应该使用版本为13的postgre,但是我现在docker compose的yaml文件制定了使用postgre 15,所以存在故障。
我们需要将代码仓中有关postgre的版本都还原成原始的13
对应的仓库修改参考
Pasted image 20231123234933.png

find . -type f -exec sed -i 's/image: postgres:15.2-alpine/image: postgre:13/g' {} +

Pasted image 20231124002509.png