Docker:错误创buildaufs挂载到/ var / lib / docker / aufs / mnt / 15396ee0f38d161382f104e11c94b6ca0efafe10f9952e1dfba4f548009fbe59-init:无效参数

我正在尝试构build一个Docker虚拟机并不断得到错误:

创buildaufs挂载到/ var / lib / docker / aufs / mnt / 15396ee0f38d161382f104e11c94b6ca0efafe10f9952e1dfba4f548009fbe59-init时出错:无效参数

我在Ubuntu 14上使用Docker版本1.11.2,build b9f10c9。 以下是Dockerimage的代码:

FROM ubuntu:trusty MAINTAINER Fernando Mayo <fernando@tutum.co>, Feng Honglin <hfeng@tutum.co> # Install packages ENV DEBIAN_FRONTEND noninteractive RUN apt-get update && \ apt-get -y install vim supervisor git curl unzip apache2 libapache2-mod-php5 pwgen php-apc php5-mcrypt php5-mysql php5-curl&& \ echo "ServerName localhost" >> /etc/apache2/apache2.conf # Install Composer RUN curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer RUN composer global require "laravel/installer" ENV PATH ~/.composer/vendor/bin:$PATH # Add image configuration and scripts ADD start-apache2.sh /start-apache2.sh ADD start-mysqld.sh /start-mysqld.sh ADD run.sh /run.sh RUN chmod 755 /*.sh ADD my.cnf /etc/mysql/conf.d/my.cnf ADD supervisord-apache2.conf /etc/supervisor/conf.d/supervisord-apache2.conf ADD supervisord-mysqld.conf /etc/supervisor/conf.d/supervisord-mysqld.conf ADD php.ini /etc/php5/cli/php.ini ADD 000-default.conf /etc/apache2/sites-available/000-default.conf # config to enable .htaccess RUN a2enmod rewrite # Copy over private key, and set permissions ADD .ssh /root/.ssh # Get aws stuff RUN curl "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" -o "awscli-bundle.zip" RUN unzip awscli-bundle.zip RUN ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws #####This section has been moved into the run.sh to allow for cached builds that get the most up to date git repository. This is done by using ENTRYPOINT rather than RUN # Clone the repo RUN rm -rd /var/www/html #RUN git clone ssh://git-codecommit.us-east-1.amazonaws.com/v1/repos/Server /var/www/html # Set file permissions #RUN chmod -R 777 /var/www/html/storage #RUN chmod -R 777 /var/www/html/bootstrap/cache ENTRYPOINT /run.sh ########################################################################################### # Environment variables to configure php ENV PHP_UPLOAD_MAX_FILESIZE 10M ENV PHP_POST_MAX_SIZE 10M EXPOSE 80 3306 CMD ["/run.sh"] 

我怎样才能解决这个安装问题?

编辑:可以运行在一个活的USB,特别是Ubuntu的主机操作系统,导致这个问题?

此外,我试图从错误的build议:“错误创buildaufs挂载到”build设dockerfile时,但它没有奏效。