Docker 安装 PostgreSQL2024年8月13日#Docker132AI 生成的摘要拉取最新版本的postgres镜像,然后运行容器,设置用户名为postgres,密码为123456,参考资料在https://hub.docker.com/_/postgres。拉取镜像# Copydocker pull postgres:latest 运行容器# Copy docker run --name postgres -e POSTGRES_PASSWORD=123456 -p 5432:5432 -d postgres 用户名:postgres 密码:123456 参考资料# https://hub.docker.com/_/postgres ---