我正在使用Heroku with Docker。我需要在/public/pictures
上传文件,我想通过sftp或scp来完成。我尝试使用以下注释公开端口22并访问容器:
ssh app@application.herokuapp.com
它什么都不做。
有办法吗?还有更好的方法吗?
答案 0 :(得分:0)
如“If you run SSHD in your Docker containers, you're doing it wrong!”中所述,大多数容器不包含sshd
。
docker exec
(如I mentioned here)将打开一个新shell并允许您访问容器。