File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,12 +57,12 @@ setup() {
5757}
5858
5959@test " parse_stack_name extracts name from path" {
60- result=$( parse_stack_name " /mnt/user/appdata/mystack/docker- compose.yml " )
60+ result=$( parse_stack_name " /mnt/user/appdata/mystack/compose.yaml " )
6161 [ " $result " = " mystack" ]
6262}
6363
6464@test " validate_compose_file detects missing file" {
65- run validate_compose_file " /nonexistent/docker- compose.yml "
65+ run validate_compose_file " /nonexistent/compose.yaml "
6666 [ " $status " -eq 1 ]
6767}
6868```
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ COMPOSE_WRAPPER=/usr/local/emhttp/plugins/compose.manager/scripts/compose.sh
200200# Process each project directory
201201for dir in $COMPOSE_ROOT /* ; do
202202 if [ -d " $dir " ]; then
203- if [ -f " $dir /docker- compose.yml " ]; then
203+ if [ -f " $dir /compose.yaml " ]; then
204204 if [ -f " $dir /autostart" ]; then
205205 name=$( < " ${dir} /name" )
206206 logger " Starting compose stack: ${name} "
You can’t perform that action at this time.
0 commit comments