We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c06a0ea commit 687fd96Copy full SHA for 687fd96
1 file changed
src/stack/deploy/stack.py
@@ -21,6 +21,7 @@
21
from pathlib import Path
22
from typing import Set, List
23
24
+from stack import constants
25
from stack.util import (
26
get_yaml,
27
get_stack_path,
@@ -29,7 +30,6 @@
29
30
get_dev_root_path,
31
resolve_compose_file,
32
)
-from stack import constants
33
34
35
class Stack:
@@ -244,5 +244,5 @@ def get_pod_file_path(stack, pod_name: str):
244
pod.get("repository", stack.get_repo_name()).split("@")[0].split("/")[-1],
245
pod.get("path", "."),
246
247
- result = os.path.join(pod_root_dir, "docker-compose.yml")
+ result = os.path.join(pod_root_dir, f"{constants.compose_file_prefix}.yml")
248
return result
0 commit comments