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.
2 parents 8bacaef + 9f2c2fd commit 8666833Copy full SHA for 8666833
1 file changed
pkg/compose/compose.go
@@ -79,6 +79,16 @@ func NewCompose(options ...Option) *Compose {
79
Ports: []string{"8080:80"},
80
Image: "rss3/node",
81
},
82
+ fmt.Sprintf("%s_monitor", prefix): {
83
+ Command: "--module=monitor",
84
+ ContainerName: fmt.Sprintf("%s_monitor", prefix),
85
+ Image: "rss3/node",
86
+ },
87
+ fmt.Sprintf("%s_broadcaster", prefix): {
88
+ Command: "--module=broadcaster",
89
+ ContainerName: fmt.Sprintf("%s_broadcaster", prefix),
90
91
92
93
Volumes: map[string]*string{
94
cockroachdbVolume: nil,
0 commit comments