Skip to content

Commit e93ab06

Browse files
committed
docs: update references from docker-compose.yml to compose.yaml in testing and events documentation
1 parent 01548f0 commit e93ab06

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/advanced/testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
```

docs/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ COMPOSE_WRAPPER=/usr/local/emhttp/plugins/compose.manager/scripts/compose.sh
200200
# Process each project directory
201201
for 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}"

0 commit comments

Comments
 (0)