Unable to find user root: no matching entries in passwd file in Docker

前端 未结 3 1716
半阙折子戏
半阙折子戏 2020-12-17 17:07

I have containers for multiple Atlassian products; JIRA, Bitbucket and Confluence. When I\'m trying to access the running containers I

3条回答
  •  长情又很酷
    2020-12-17 17:30

    You can use this command to access to the container with root user:

    docker exec -u 0 -i -t {container_name_or_hash} /bin/bash

    try debug with that. i think the script maybe remove or disable root user.

提交回复
热议问题