【问题标题】:Dockerfile Image The command '/bin/sh -c apt-get install -y mysqld-server' returned a non-zero code: 100Dockerfile Image 命令'/bin/sh -c apt-get install -y mysqld-server'返回一个非零代码:100
【发布时间】:2017-09-20 07:18:10
【问题描述】:

我想用这个规范制作一个 docker 镜像:

  1. Ubuntu:16.04 / 最新
  2. PHP 7.x
  3. nginx:最新的 mySQL 5.x
  4. 暴露端口 80 & 443
  5. 目录/来源

可选:

  1. VIM
  2. PHP 编写器

我的 Dockerfile:

# Download base image ubuntu 16.04
FROM ubuntu:16.04

# Update Ubuntu Software repository
RUN apt-get update

# Install PHP, nginx, mySQL
RUN apt-get install -y nginx php7.0-fpm && \
rm -rf /var/lib/apt/lists/*

# Install MySQL and set default root password
RUN echo 'mysql-server mysql-server/root_password  password mypassword' | debconf-set-selections
RUN echo 'mysql-server mysql-server/root_password_again password mypassword' | debconf-set-selections
RUN apt-get install -y mysql-server

# Define the ENV variable
ENV nginx_vhost /etc/nginx/sites-available/default
ENV php_conf /etc/php/7.0/fpm/php.ini
ENV nginx_conf /etc/nginx/nginx.conf

# Enable php-fpm on nginx virtualhost configuration
COPY default ${nginx_vhost}
RUN sed -i -e 's/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/g' ${php_conf} && \
echo "\ndaemon off;" >> ${nginx_conf}

RUN mkdir -p /run/php && \
chown -R www-data:www-data /var/www/html && \
chown -R www-data:www-data /run/php

# Volume configuration
VOLUME ["/etc/nginx/sites-enabled", "/etc/nginx/certs", "/etc/nginx/conf.d", "/var/log/nginx", "/var/www/html"]

# Configure Services and Port
COPY start.sh /start.sh
CMD ["./start.sh"]

EXPOSE 80 443

我在构建它时收到此错误消息

Sending build context to Docker daemon 5.632 kB
Step 1 : FROM ubuntu:16.04
 ---> 2d696327ab2e
Step 2 : RUN apt-get update
 ---> Using cache
 ---> b58709c2b7b9
Step 3 : RUN apt-get install -y nginx php7.0-fpm &&     rm -rf /var/lib/apt/lists/*
 ---> Using cache
 ---> 3d58b4fac924
Step 4 : RUN echo 'mysql-server mysql-server/root_password  password mypassword' | debconf-set-selections
 ---> Using cache
 ---> 85256efe3bd3
Step 5 : RUN echo 'mysql-server mysql-server/root_password_again password mypassword' | debconf-set-selections
 ---> Using cache
 ---> d1f71eeacbe2
Step 6 : RUN apt-get install -y mysqld-server
 ---> Running in 9dba6ce0c59a
Reading package lists...
Building dependency tree...
Reading state information...
E: Unable to locate package mysqld-server
The command '/bin/sh -c apt-get install -y mysqld-server' returned a non-zero code: 100

我该如何解决?

谢谢

【问题讨论】:

    标签: php mysql ubuntu docker nginx


    【解决方案1】:

    您的问题在于rm -rf /var/lib/apt/lists/* 行。您正在删除由apt-get update 获取的列表。然后,您尝试使用 apt 安装软件包。这将失败。

    你需要将rm -rf /var/lib/apt/lists/移动到安装mysql-server的那一行之后。

    # Download base image ubuntu 16.04
    FROM ubuntu:16.04
    
    # Update Ubuntu Software repository
    RUN apt-get update
    
    # Install PHP, nginx, mySQL
    RUN apt-get install -y nginx php7.0-fpm
    
    # Install MySQL and set default root password
    RUN echo 'mysql-server mysql-server/root_password  password mypassword' | debconf-set-selections
    RUN echo 'mysql-server mysql-server/root_password_again password mypassword' | debconf-set-selections
    RUN apt-get install -y mysql-server && rm -rf /var/lib/apt/lists/*
    
    # Define the ENV variable
    ENV nginx_vhost /etc/nginx/sites-available/default
    ENV php_conf /etc/php/7.0/fpm/php.ini
    ENV nginx_conf /etc/nginx/nginx.conf
    
    # Enable php-fpm on nginx virtualhost configuration
    COPY default ${nginx_vhost}
    RUN sed -i -e 's/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/g' ${php_conf} && \
    echo "\ndaemon off;" >> ${nginx_conf}
    
    RUN mkdir -p /run/php && \
    chown -R www-data:www-data /var/www/html && \
    chown -R www-data:www-data /run/php
    
    # Volume configuration
    VOLUME ["/etc/nginx/sites-enabled", "/etc/nginx/certs", "/etc/nginx/conf.d", "/var/log/nginx", "/var/www/html"]
    
    # Configure Services and Port
    COPY start.sh /start.sh
    CMD ["./start.sh"]
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2019-10-09
      • 1970-01-01
      • 1970-01-01
      • 2019-02-02
      • 1970-01-01
      • 2021-03-19
      • 1970-01-01
      • 2015-10-30
      相关资源
      最近更新 更多