我正在尝试建立一个新的jenkins管道,以测试对我们代码的新请求请求。我在ubuntu:14.04
图像上使用docker 来模拟我们的生产环境。
这是一个最小的工作示例:
#jenkinsfile
stage('Checkout and provision'){
docker.image('ubuntu:14.04').withRun('-u root'){
checkout scm
sh 'chmod -R 770 ./'
sh './init-script.sh'
}
}
和
#init-script.sh
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update -y
sudo apt-get dist-upgrade -y
sudo apt-get install \
apache2 \
php \
php-mysql \
php-xml \
libapache2-mod-auth-mysql \
libapache2-mod-php \
php5-curl \
zip \
htop \
supervisor \
mailutils \
git \
build-essential -y
sudo apt-get autoremove -y
/etc/sudoers
容器的文件如下:
#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults env_reset
Defaults mail_badpass
Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Defaults:jenkins !requiretty
# User alias specification
# Cmnd alias specification
# User privilege specification
root ALL=(ALL:ALL) ALL
# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
# Allow members of group sudo to execute any command
%sudo ALL=(ALL:ALL) ALL
# See sudoers(5) for more information on "#include" directives:
#includedir /etc/sudoers.d
jenkins ALL=(ALL:ALL) NOPASSWD:ALL
我遇到的问题是docker没有像我以前那样以root身份运行,而是从主机保留了jenkins用户的用户ID。这使得很难进行sudo。
我尝试将jenkins用户添加到container /etc/passwd
文件并chmod
针对该文件运行,但是甚至没有权限从中执行任何一个操作jenkinsfile
。
使用此配置,我应该是root用户。但是,我要么看Error: must run as root
我是否不使用,要么看sudo
sudo:no tty present and no askpass program specified
如果我使用。
有没有正确的方法来处理这种情况?理想地来自jenkinsfile
; 我想避免创建更多(Dockerfile
如果可能的话),因为这将进一步区分测试和生产。