Created
November 20, 2015 13:01
-
-
Save alexniver/23fa3a27cd6e33ff0ccd 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
Docker 官方教程, 创建自己的鲸鱼那, 如果使用Ubuntu14.04, 使用文档中的Dockerfile是有问题的. 需要在apt-get 前面加入 DEBIAN_FRONTEND=noninteractive | |
不然会报错. | |
效果如下: | |
``` | |
FROM docker/whalesay:latest | |
DEBIAN_FRONTEND=noninteractive | |
RUN apt-get -y update && apt-get install -y fortunes | |
CMD /usr/games/fortune -a | cowsay | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment