You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
version: '2'
|
|
services:
|
|
go-json:
|
|
image: golang:1.16
|
|
volumes:
|
|
- '.:/go/src/go-json'
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 620M
|
|
working_dir: /go/src/go-json
|
|
command: |
|
|
sh -c "go test -c . && ls go-json.test"
|
|
|