Created
May 19, 2014 18:20
-
-
Save jamescarr/1bf08279e7b2eb476227 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Vagrant.configure("2") do |config| | |
| config.vm.provider "docker" do |d| | |
| d.image = "orchardup/jenkins" | |
| d.ports = ["8080:8080"] | |
| end | |
| end |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I also tried with this:
curl to both http://localhost:8080 and http://192.168.50.44:8080 return nothing.
Cannot be related to dockerfiles as I have tried others. What gives?