【Docker】下载&使用Postgres
1 更换国内镜像源Settings - Docker Engine在"registry-mirrors"中添加镜像地址:"registry-mirrors": ["https://registry.docker-cn.com","http://hub-mirror.c.163.com"]2 查看镜像docker images3 下载镜像docker pull postgres4 运行Postgre
·
1 更换国内镜像源
Settings - Docker Engine
在"registry-mirrors"中添加镜像地址:
"registry-mirrors": [
"https://registry.docker-cn.com",
"http://hub-mirror.c.163.com"
]
2 查看镜像
docker images
3 下载镜像
docker pull postgres
4 运行Postgres
docker run --name postgres -p 5432:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=password -d postgres
5 查看docker进程
docker ps
6 连接docker上的Postgres服务器
docker exec -it postgres +cmd
# 连接postgres服务器
docker exec -it postgres psql -U root
# 退出
\q
# docker容器日志
docker logs postgres
更多推荐
已为社区贡献1条内容
所有评论(0)