Skip to content

Commit 687fd96

Browse files
authored
rebrand composefile (#42)
1 parent c06a0ea commit 687fd96

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/stack/deploy/stack.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
from pathlib import Path
2222
from typing import Set, List
2323

24+
from stack import constants
2425
from stack.util import (
2526
get_yaml,
2627
get_stack_path,
@@ -29,7 +30,6 @@
2930
get_dev_root_path,
3031
resolve_compose_file,
3132
)
32-
from stack import constants
3333

3434

3535
class Stack:
@@ -244,5 +244,5 @@ def get_pod_file_path(stack, pod_name: str):
244244
pod.get("repository", stack.get_repo_name()).split("@")[0].split("/")[-1],
245245
pod.get("path", "."),
246246
)
247-
result = os.path.join(pod_root_dir, "docker-compose.yml")
247+
result = os.path.join(pod_root_dir, f"{constants.compose_file_prefix}.yml")
248248
return result

0 commit comments

Comments
 (0)