refactor: Make docker pacakge an internal package of cmd/base

The docker package and its StartDbInDocker function should only be used
by the `boundary dev` command now. So moving it into an internal package
of `base` will prevent it from being use for tests accidentally, while
still allowing it to be used for `boundary dev`.
pull/1482/head
Timothy Messier 5 years ago
parent ecdcf72e0e
commit 2ee1d4e6e4
No known key found for this signature in database
GPG Key ID: EFD2F184F7600572

@ -10,9 +10,9 @@ import (
"strings"
"github.com/hashicorp/boundary/internal/auth/oidc"
"github.com/hashicorp/boundary/internal/cmd/base/internal/docker"
"github.com/hashicorp/boundary/internal/db"
"github.com/hashicorp/boundary/internal/db/schema"
"github.com/hashicorp/boundary/internal/docker"
"github.com/hashicorp/boundary/internal/iam"
"github.com/hashicorp/boundary/internal/kms"
"github.com/hashicorp/boundary/internal/observability/event"

Loading…
Cancel
Save