Docker 安装 PostgreSQL2024年8月13日#Docker126AI 生成的摘要拉取最新版本的postgres镜像,运行容器并设置密码为123456,端口映射为5432,用户名为postgres。参考资料可在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 ---