Is there a way to add a prompt during the docker b

2019-02-12 15:12发布

I'm using Docker to create a specific nginx container with SSL.

But I don't want my SSL files to be kept in my versionning system as is. Therefore they are encrypted. When building a docker container, I need the password to decrypt the files and test my nginx configuration.

I'm using read to get a prompt in my install script but Docker simply stops on the prompt:

 + echo 'Please enter the password for the SSL certificates: '
 + read -s SSL_PASSWORD
INFO[0008] The command [/bin/sh -c /build/setup.sh && /build/cleanup.sh] returned a non-zero code: 1

Is there some way to get a prompt when doing a docker build ?

Thanks for your help :)

2条回答
三岁会撩人
2楼-- · 2019-02-12 15:47

Well, after searching around, there's not way to have a prompt during a docker build. It has been designed to be fully automated.

I'll do this step during the docker run then.

Thanks to a certain larsks on the IRC #docker group, there's an interesting read about these issues at https://github.com/GoogleCloudPlatform/kubernetes/issues/2030

Thanks for helping out !

查看更多
萌系小妹纸
3楼-- · 2019-02-12 16:09

Use expect command as it is like executing from a commandline. COPY expect script from docker host and run it.

查看更多
登录 后发表回答