mirror of
https://github.com/containers/podman.git
synced 2026-07-14 09:11:49 -04:00
* Use vfkit command line assembly * Inject ignition file into guest using http over vsock * Ready notification through use of vsock [NO NEW TESTS NEEDED] Signed-off-by: Brent Baude <bbaude@redhat.com>
14 lines
260 B
YAML
14 lines
260 B
YAML
version: '2'
|
|
services:
|
|
go-json:
|
|
image: golang:1.18
|
|
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"
|