我有以下Dockerfile
内容:
FROM nginx:latest
我构建此文件并将其推送到ECS。然后,我使用自己的私钥和用于运行容器的服务创建了任务定义。
我要访问该容器。所以我跟随this article:
$ ssh -i myapp-nginx.pem ec2-user@my-ip-from-ec2
但是当我登录时,我收到此消息
__| __| __|
_| ( \__ \ Amazon ECS-Optimized Amazon Linux AMI 2018.03.i
____|\___|____/
因此,我不确定我是否登录到该容器,因为:
apt-get not working. -> -bash: apt-get: command not found
lsb_release not working -> `bash: lsb_release: command not found`
所以,我的问题是我怎么知道我正在为certbot使用什么操作系统?以及为什么我没有ubuntu系统?
答案 0 :(得分:1)