-
-
Save masonforest/194e0cb6bb16c88e21a0 to your computer and use it in GitHub Desktop.
FROM ubuntu:14.04 | |
MAINTAINER Mason Fischer <[email protected]> | |
RUN apt-get update && apt-get install -y nodejs |
require "serverspec" | |
require "docker" | |
describe "Dockerfile" do | |
image = Docker::Image.build_from_dir('.') | |
set :os, family: :debian | |
set :backend, :docker | |
set :docker_image, image.id | |
it "installs the right version of Ubuntu" do | |
expect(os_version).to include("Ubuntu 14") | |
end | |
it "installs required packages" do | |
expect(package("nodejs")).to be_installed | |
end | |
def os_version | |
command("lsb_release -a").stdout | |
end | |
end |
@masonforest great blog post! Any suggestions on how to go about removing the images after the tests get run? I've tried it this way, but this doesn't seem right (or to work!)
Just calling out: it's important to specify that you should use the docker-api
gem. The docker
gem is not the right one to use. But confusingly, the require statement is correct!
require "docker"
@cjcjameson you just saved me a lot of time buddy, thx. and thx @masonforest !
Oh my! The docker-api gem! what a difference that makes! @masonforest - do you think you can update the article to call this out? it would have saved me a bunch of time!
@tfhartmann : I add this to my specs:
after(:all) do
@image.remove(:force => true)
end
In the example you build the image only. I assume ServerSpec is starting the container and stopping by the end of the test. How can you pass arguments to the container such as environment variables, commands, volumes, etc?
Hello, this is my version of docker:
$ docker -v
Docker version 1.11.1
I can't using rspec and always getting this message:
$ bundle exec rspec spec
No examples found.
Finished in 0.00098 seconds (files took 1.23 seconds to load)
0 examples, 0 failures
this is my directory structure:
$ tree . βΉruby-2.3.0βΊ
.
βββ Dockerfile
βββ run
βββ spec
βββ Dockerfile_spec.rb
1 directory, 3 files
I wonder if the problem is their in my setup or with the above spec file π
Here is what some thing i get after the specinfra v2.15.0 installed
Here are some of my machine details
Btw the commit is more specific to the CMD inside the Dockerfile to check or with the cmd to execute in the spec file?
This really halts my work so badly π« #dekz or @dekz need you help on this