Skip to content

Commit a34dd20

Browse files
provisiong: rename module_compose.yaml ti brick_compose.yaml
1 parent 7141c4b commit a34dd20

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/orchestrator/orchestrator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var (
4141

4242
func init() {
4343
const dockerRegistry = "ghcr.io/bcmi-labs/"
44-
const dockerPythonImage = "arduino/appslab-python-apps-base:0.0.10"
44+
const dockerPythonImage = "arduino/appslab-python-apps-base:0.0.11"
4545
// Registry base: contains the registry and namespace, common to all Arduino docker images.
4646
registryBase := os.Getenv("DOCKER_REGISTRY_BASE")
4747
if registryBase == "" {

internal/orchestrator/provision.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ func generateMainComposeFile(ctx context.Context, app parser.App, pythonImage st
101101

102102
var composeFiles paths.PathList
103103
for _, brick := range app.Descriptor.Bricks {
104-
composeFilePath := provisioningStateDir.Join("compose", brick.Name, "module_compose.yaml")
104+
composeFilePath := provisioningStateDir.Join("compose", brick.Name, "brick_compose.yaml")
105105
if composeFilePath.Exist() {
106106
composeFiles.Add(composeFilePath)
107107
slog.Debug("Brick compose file found", slog.String("module", brick.Name), slog.String("path", composeFilePath.String()))

0 commit comments

Comments
 (0)