bcaldwell / devctl

http://devctl.github.io
MIT License
1 stars 0 forks source link

Default to development in docker #63

Open bcaldwell opened 7 years ago

bcaldwell commented 7 years ago

I think it make sense to default to running code in a docker container unless the user manual overrides it. This makes it a lot easier to manages dependencies as well.

I propose adding a docker bool options to devclt.yml to disable this

---
go:
  version: 6

docker: true
docker_options:
  image: golang
  tag: 1.7
  src_directory: /go/src/github.com/...

scripts:
  hello:
    desc: blah
    command: echo hello
    docker: false

@karanthukral