podman pull elasticsearch:7.9.1
podman pull postgres:15.3
podman pull mysql:8.0.27
podman run --name mysql8.0.27 -p 3306:3306 -e MYSQL_ROOT_PASSWORD=12345678xxx -d mysql:8.0.27
podman network create somenetwork
podman run -d --name elasticsearch --net somenetwork -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" elasticsearch:7.9.0
podman run --name postgres -e POSTGRES_PASSWORD=12345678xxx -p 5432:5432 -d postgres:15.3
# 登录进去 修改加密
ALTER USER 'root' IDENTIFIED WITH mysql_native_password BY '12345678xxx';