We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69d79ff commit c357694Copy full SHA for c357694
lib/docker/test_env/parrot.go
@@ -5,7 +5,6 @@ import (
5
"testing"
6
"time"
7
8
- "github.com/google/uuid"
9
"github.com/rs/zerolog"
10
"github.com/rs/zerolog/log"
11
tc "github.com/testcontainers/testcontainers-go"
@@ -36,7 +35,7 @@ type Parrot struct {
36
35
func NewParrot(networks []string, opts ...EnvComponentOption) *Parrot {
37
p := &Parrot{
38
EnvComponent: EnvComponent{
39
- ContainerName: fmt.Sprintf("%s-%s", "parrot", uuid.NewString()[0:8]),
+ ContainerName: "parrot",
40
Networks: networks,
41
StartupTimeout: 10 * time.Second,
42
},
0 commit comments