Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit b58e4bf

Browse files
committed
Compose files are just files, unlike Dockerfile which is a thing
1 parent af9aa7b commit b58e4bf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ Usage:
1010
Available Commands:
1111
build Compile an app package from locally available data.
1212
deploy Deploy the specified app on the connected cluster
13-
helm Render the composefile for this app as an Helm package
13+
helm Render the Compose file for this app as an Helm package
1414
help Help about any command
1515
init Initialize an app package in the current working directory
1616
inspect Retrieve metadata for a given app package
1717
load Load an app from docker
1818
pack Pack this app as a single file
1919
pull Pull an app from a registry
2020
push Push the application to a registry
21-
render Render the composefile for this app
21+
render Render the Compose file for this app
2222
save Save the application to docker (in preparation for push)
2323
unpack Unpack the app to expose the content
2424

cmd/helm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
var helmCmd = &cobra.Command{
1313
Use: "helm <app-name> [-c <compose-files>...] [-e key=value...] [-f settings-file...]",
14-
Short: "Render the composefile for this app as an Helm package",
14+
Short: "Render the Compose file for this app as an Helm package",
1515
Args: cobra.ExactArgs(1),
1616
Run: func(cmd *cobra.Command, args []string) {
1717
d := make(map[string]string)

renderer/render.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func loadSettings(files []string) (map[string]interface{}, error) {
6969
return res, nil
7070
}
7171

72-
// Render renders the composefile for this app, merging in settings files, other compose files, end env
72+
// Render renders the Compose file for this app, merging in settings files, other compose files, end env
7373
func Render(appname string, composeFiles []string, settingsFile []string, env map[string]string) (*composetypes.Config, error) {
7474
appname, cleanup, err := packager.Extract(appname)
7575
if err != nil {

0 commit comments

Comments
 (0)