packer-cn/docker-compose.yml

28 lines
517 B
YAML
Raw Normal View History

2017-12-12 05:33:16 -05:00
version: '2'
services:
build:
2018-12-17 17:05:31 -05:00
image: jetbrainsinfra/golang:1.11.4
2017-05-14 17:25:50 -04:00
volumes:
2018-12-17 17:05:31 -05:00
- .:/work
- modules:/go/pkg/mod
- cache:/root/.cache
working_dir: /work
2019-01-04 09:20:34 -05:00
command: make build -j 3
2017-12-12 05:33:16 -05:00
test:
2018-12-17 17:05:31 -05:00
image: jetbrainsinfra/golang:1.11.4
2017-12-12 05:33:16 -05:00
volumes:
2018-12-17 17:05:31 -05:00
- .:/work
- modules:/go/pkg/mod
- cache:/root/.cache
working_dir: /work
2017-12-12 05:33:16 -05:00
# network_mode: "container:vpn"
2018-12-17 17:05:31 -05:00
environment:
VSPHERE_USERNAME:
VSPHERE_PASSWORD:
2019-01-04 09:20:34 -05:00
command: make test
2018-12-17 17:05:31 -05:00
volumes:
modules:
cache: