Last active
August 29, 2015 14:07
-
-
Save mistermocha/3665308cca7d61ad3f21 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2014/10/18 19:11:08 POST /build?rm=1&t=root%2Fcentos-node-hello | |
[6c13daaf] +job build() | |
[6c13daaf] +job allocate_interface(8646ff642880bf5391b1324183c274329473155a2599990a425342924a5378a0) | |
[6c13daaf] -job allocate_interface(8646ff642880bf5391b1324183c274329473155a2599990a425342924a5378a0) = OK (0) | |
[error] container.go:475 Error running container: write /cgroup/devices/docker/8646ff642880bf5391b1324183c274329473155a2599990a425342924a5378a0/cgroup.procs: invalid argument | |
[6c13daaf] +job release_interface(8646ff642880bf5391b1324183c274329473155a2599990a425342924a5378a0) | |
[6c13daaf] -job release_interface(8646ff642880bf5391b1324183c274329473155a2599990a425342924a5378a0) = OK (0) | |
[6c13daaf] +job release_interface(8646ff642880bf5391b1324183c274329473155a2599990a425342924a5378a0) | |
[6c13daaf] -job release_interface(8646ff642880bf5391b1324183c274329473155a2599990a425342924a5378a0) = OK (0) | |
[error] driver.go:140 Warning: error unmounting device 8646ff642880bf5391b1324183c274329473155a2599990a425342924a5378a0: UnmountDevice: device not-mounted id 8646ff642880bf5391b1324183c274329473155a2599990a425342924a5378a0 | |
write /cgroup/devices/docker/8646ff642880bf5391b1324183c274329473155a2599990a425342924a5378a0/cgroup.procs: invalid argument | |
[6c13daaf] -job build() = ERR (1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM centos:centos6 | |
RUN rpm -Uvh /home/ec2-user/epel-release-6-8.noarch.rpm | |
RUN yum install -y npm | |
COPY /src | |
RUN cd /src; npm install | |
EXPOSE 8080 | |
CMD ["node", "/src/index.js"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ec2-user@ip-XXXXXX ~]$ sudo docker build -t root/centos-node-hello . | |
Sending build context to Docker daemon 25.6 kB | |
Sending build context to Docker daemon | |
Step 0 : FROM centos:centos6 | |
---> 68edf809afe7 | |
Step 1 : RUN rpm -Uvh /home/ec2-user/epel-release-6-8.noarch.rpm | |
---> Running in 8646ff642880 | |
2014/10/18 19:11:08 write /cgroup/devices/docker/8646ff642880bf5391b1324183c274329473155a2599990a425342924a5378a0/cgroup.procs: invalid argument |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment