Normally, docker containers are run using the user root. I'd like to use a different user, which is no problem using docker's USER directive. But this user should be able to use sudo inside the container. This command is missing.
Here's a simple Dockerfile for this purpose:
FROM ubuntu:12.04
RUN useradd docker && echo "docker:docker" | chpasswd
RUN mkdir -p /home/docker && chown -R docker:docker /home/docker
USER docker
CMD /bin/bash
Running this container, I get logged in with user 'docker'. When I try to use sudo, the command isn't found. So I tried to install the sudo package inside my Dockerfile using
RUN apt-get install sudo
This results in Unable to locate package sudo
Just got it. As regan pointed out, I had to add the user to the sudoers group. But the main reason was I'd forgotten to update the repositories cache, so apt-get couldn't find the sudo package. It's working now. Here's the completed code:
If you have a container running as root that runs a script (which you can't change) that needs access to the
sudo
command, you can simply create a newsudo
script in your$PATH
that calls the passed command.e.g. In your Dockerfile:
When neither sudo nor apt-get is available in container, you can also jump into running container as root user using command
The other answers didn't work for me. I kept searching and found a blog post that covered how a team was running non-root inside of a docker container.
Here's the TL;DR version:
I was using
FROM node:9.3
for this, but I suspect that other similar container bases would work as well.if you want to connect to container and install something
using apt-get
first as above answer from our brother "Tomáš Záluský"
then try to
it worked with me hope it's useful for all