【发布时间】:2017-06-19 12:02:58
【问题描述】:
我正在为本地开发需求创建一个 docker 文件。该文件创建一个user 帐户,密码为user。我认为应该起作用的行是:
# allow writes to the home directory
RUN echo "user" | sudo -S chmod 777 ~
但是,当我以交互方式运行图像时,它似乎失败了,我看到了这条消息:
mkdir: cannot create directory ‘/home/.meteor-install-tmp’: Permission
denied
当我在容器中运行 sudo -S chmod 777 ~ 时,它可以工作。
这是完整的脚本:
# docker build -t timebandit/meteor-1-5 --rm .
# docker run -v /host/path:/home/code -it timebandit/meteor-1-5 bash
FROM ubuntu:xenial
# update the system
RUN apt-get update && apt-get -y install curl \
sudo \
apt-utils \
locales \
nano
# Set the locale
RUN sudo sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/'
/etc/locale.gen && \
locale-gen
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
# set the root password
RUN echo "root:root" | chpasswd
# create a user
RUN useradd -ms /bin/bash user
RUN adduser user sudo
RUN echo 'user:user' | chpasswd
ENV HOME=/home
WORKDIR $HOME/user
USER user
# allow writes to the home directory
ARG user_pass
RUN echo $user_pass | sudo --stdin chmod 777 /home
# install meteor
RUN echo $user_pass | sudo curl https://install.meteor.com/ | sh
【问题讨论】:
-
通常在docker的镜像中sudo是没有安装的。你试过没有 sudo 吗?
-
@German,我在 Dockerfile 上安装了 sudo
标签: ubuntu docker dockerfile