Make it possible to first use compose.yaml files

I prefer podman :p
This commit is contained in:
2022-05-06 15:13:29 +02:00
parent 3031f37509
commit f6126e5ce1

View File

@@ -12,7 +12,7 @@ import (
)
var (
composeFiles = []string{"docker-compose.yaml", "docker-compose.yml"}
composeFiles = []string{"compose.yml", "compose.yaml", "docker-compose.yaml", "docker-compose.yml"}
ComposeFile = ""
AppName = "MyApp"
ChartsDir = "chart"