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 e8f4c29 commit 9f2c2fdCopy full SHA for 9f2c2fd
1 file changed
pkg/compose/compose.go
@@ -50,6 +50,16 @@ func NewCompose(options ...Option) *Compose {
50
Ports: []string{"8080:80"},
51
Image: "rss3/node",
52
},
53
+ fmt.Sprintf("%s_monitor", prefix): {
54
+ Command: "--module=monitor",
55
+ ContainerName: fmt.Sprintf("%s_monitor", prefix),
56
+ Image: "rss3/node",
57
+ },
58
+ fmt.Sprintf("%s_broadcaster", prefix): {
59
+ Command: "--module=broadcaster",
60
+ ContainerName: fmt.Sprintf("%s_broadcaster", prefix),
61
62
63
64
Volumes: map[string]*string{
65
cockroachdbVolume: nil,
0 commit comments