...

Source file src/github.com/docker/cli/e2e/stack/config_test.go

Documentation: github.com/docker/cli/e2e/stack

     1  package stack
     2  
     3  import (
     4  	"testing"
     5  
     6  	"gotest.tools/v3/icmd"
     7  )
     8  
     9  func TestConfigFullStack(t *testing.T) {
    10  	result := icmd.RunCommand("docker", "stack", "config", "--compose-file=./testdata/full-stack.yml")
    11  	result.Assert(t, icmd.Success)
    12  }
    13  

View as plain text