Questions tagged [dinghy]

About

Docker on OS X with batteries included, aimed at making a more pleasant local development experience. Runs on top of docker-machine.

Dinghy creates its own VM using docker-machine, it will not modify your existing docker-machine VMs.

Links

10 questions
18
votes
1 answer

How to configure Capybara to run tests in a dockerized Selenium Grid?

I have a suite of tests that I want to execute in a dockerized Selenium Grid. The tests are written in Ruby using RSpec and Capybara. Also worth noting: I'm using dinghy as a wrapper for docker-machine. A couple weeks ago I built a proof of concept…
mycargus
  • 2,538
  • 3
  • 23
  • 31
3
votes
1 answer

Data lost after dinghy restart (postgres container)

I'm creating a container using this docker-compose.yml postgresdb: container_name: "postgresdb" image: "postgres:9.5" volumes: - "/var/docker/data/postgresdb:/var/lib/postgresql/data" ports: - "5432:5432" environment: …
Alkis Kalogeris
  • 17,044
  • 15
  • 59
  • 113
1
vote
0 answers

Resolv::DNS with MX fails in docker-machine

I have a problem when trying to resolve MX records using Resolv::DNS. When I execute the following lines directly on my Mac in irb, everything works: > require "resolv" > Resolv::DNS.new.getresource("stackoverflow.com",…
23tux
  • 14,104
  • 15
  • 88
  • 187
1
vote
1 answer

Virtualbox port forwarding with docker

I'm running virtualbox locally and I've used port forwarding like this 0.0.0.0:7000 -> 0.0.0.0:7000 so that I can do curl http://localhost:7000 from host to vm and be able to communicate with the application running in the vm and listening to port…
Alkis Kalogeris
  • 17,044
  • 15
  • 59
  • 113
1
vote
0 answers

Make Docker machine very fast

I'm using Docker on Mac with the docker toolbox which use Virtual box. I love docker and I think this is the future, but it's kind of slow using VM. My question is: Is there a way to accelerate the process with VM? I heard about dinghy:…
Kevin
  • 4,823
  • 6
  • 36
  • 70
0
votes
1 answer

How to check Dinghy logs?

I followed the instructions to install Dinghy on my Spinnaker installation using https://docs.armory.io/spinnaker/install_dinghy. But I don't see my pipelines being updated. I see the spin-clouddriver showing the webhooks are being received but…
jhoang7
  • 101
  • 1
  • 1
  • 5
0
votes
1 answer

How to turn off dinghy-http-proxy when Dinghy VM starts

I use Dinghy virtual machine as docker development environment. When I start dinghy VM (dinghy up) - dinghy-http-proxy container is started also. How I can turn off it by default?
Dmitry Romashov
  • 174
  • 2
  • 14
0
votes
1 answer

Suppress request output with Docker & Dinghy

I'm using dinghy with docker and docker-compose. I've got a docker image for fake_sqs, which I'm loading in my docker-compose like so: fakesqs: image: link664/fakesqs-docker command: bundle exec fake_sqs -n fakesqs -p 4568 environment: …
dnatoli
  • 6,972
  • 9
  • 57
  • 96
0
votes
1 answer

How to setup dinghy for docker on Ubuntu 16.04?

I have setup docker, docker-machine, docker-engine, brew on ubuntu 16.04 system successfully. I am trying to setup dinghy using below command. $ brew tap codekitchen/dinghy $ brew install dinghy But not able to setup dinghy. Please suggest.
0
votes
1 answer

Docker virtual host cached

I'm using Docker with VirtualBox and dinghy and docker-compose. I'm creating a container via docker-compose. The following is the docker-compose.yml config. rabbitmq: image: rabbitmq:3-management ports: - "15672:15672" - "5672:5672" …
Alkis Kalogeris
  • 17,044
  • 15
  • 59
  • 113