Docker image from existing Rails/Unicorn/MySQL app
问题 I am new to Docker and experimenting by creating an image from an existing Rails/Unicorn/MySQL app. My files are below and the image successfully creates but I'm unclear if things are actually working properly as I can't access the traditional Unicorn localhost URL, or the boot2docker IP. So my question is, how do I access a Unicorn server locally on OSX with a Docker image running? Dockerfile # Dockerfile FROM seapy/rails-nginx-unicorn # Publish port 8080 EXPOSE 8080 CMD ["bundle", "exec",