• 进入容器:docker exec -it ec2143b01d5a bash
  • 使用postgres登录:su postgres
  • 连接数据库:psql -U postgres
  • 修改postgres用户密码:ALTER USER postgres WITH PASSWORD '123456';
  • 退出数据库连接:\q

REF