Skip to content

voidlock/travis-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

travis-docker

Bootstraps docker into a travis build.

Usage

The following is a sample .travis.yml file:

install:
  - source <(curl -sLo - https://raw.githubusercontent.com/voidlock/travis-docker/master/docker-bootstrap.sh)

script:
  - docker version
  - docker pull redis:latest
  - docker run --name=redis -d redis:latest
  - docker ps
  - docker port redis
  - docker run --rm --link=redis:db redis:latest redis-cli -h db info

TODO

  • Write more docs around customization points
  • Explore level of integration with 0.0.0.0

About

Bootstrap Docker into a Travis CI build

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages