我在实例中设置了一个docker-compose项目,但我不知道如何从我的IP或公共dns访问(ec2-xx-xx-xxx-xx.us-west-2 .compute.amazonaws.com),这是我的docker-compose文件的一部分
web:
build: .
volumes:
- .:/web # This name have to be the same like the WORKDIR in your Dockerfile
ports:
- "8080:8080"
links:
- redis
environment:
这是我的安全小组
感谢
答案 0 :(得分:0)
我假设您可以在echost实例中的localhost:8080上按预期访问?如果是,那么您是否需要配置ec2实例防火墙以打开端口8080?