如何使用docker设置实例EC2并使用IP访问它?

时间:2016-02-19 21:38:57

标签: ruby-on-rails amazon-ec2 docker docker-compose

我在实例中设置了一个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:

这是我的安全小组

enter image description here

感谢

1 个答案:

答案 0 :(得分:0)

我假设您可以在echost实例中的localhost:8080上按预期访问?如果是,那么您是否需要配置ec2实例防火墙以打开端口8080?