docker-stack 0.2.5__tar.gz → 0.2.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {docker-stack-0.2.5 → docker-stack-0.2.6}/PKG-INFO +1 -1
- {docker-stack-0.2.5 → docker-stack-0.2.6}/docker_stack/cli.py +2 -0
- {docker-stack-0.2.5 → docker-stack-0.2.6}/docker_stack.egg-info/PKG-INFO +1 -1
- {docker-stack-0.2.5 → docker-stack-0.2.6}/setup.py +1 -1
- {docker-stack-0.2.5 → docker-stack-0.2.6}/README.md +0 -0
- {docker-stack-0.2.5 → docker-stack-0.2.6}/docker_stack/__init__.py +0 -0
- {docker-stack-0.2.5 → docker-stack-0.2.6}/docker_stack/compose.py +0 -0
- {docker-stack-0.2.5 → docker-stack-0.2.6}/docker_stack/docker_objects.py +0 -0
- {docker-stack-0.2.5 → docker-stack-0.2.6}/docker_stack/envsubst.py +0 -0
- {docker-stack-0.2.5 → docker-stack-0.2.6}/docker_stack/envsubst_merge.py +0 -0
- {docker-stack-0.2.5 → docker-stack-0.2.6}/docker_stack/helpers.py +0 -0
- {docker-stack-0.2.5 → docker-stack-0.2.6}/docker_stack/merge_conf.py +0 -0
- {docker-stack-0.2.5 → docker-stack-0.2.6}/docker_stack/registry.py +0 -0
- {docker-stack-0.2.5 → docker-stack-0.2.6}/docker_stack/url_parser.py +0 -0
- {docker-stack-0.2.5 → docker-stack-0.2.6}/docker_stack.egg-info/SOURCES.txt +0 -0
- {docker-stack-0.2.5 → docker-stack-0.2.6}/docker_stack.egg-info/dependency_links.txt +0 -0
- {docker-stack-0.2.5 → docker-stack-0.2.6}/docker_stack.egg-info/entry_points.txt +0 -0
- {docker-stack-0.2.5 → docker-stack-0.2.6}/docker_stack.egg-info/requires.txt +0 -0
- {docker-stack-0.2.5 → docker-stack-0.2.6}/docker_stack.egg-info/top_level.txt +0 -0
- {docker-stack-0.2.5 → docker-stack-0.2.6}/pyproject.toml +0 -0
- {docker-stack-0.2.5 → docker-stack-0.2.6}/setup.cfg +0 -0
|
@@ -97,6 +97,8 @@ class DockerStack:
|
|
|
97
97
|
rendered_filename = Path(compose_file).with_name(
|
|
98
98
|
f"{Path(compose_file).stem}-rendered{Path(compose_file).suffix}"
|
|
99
99
|
)
|
|
100
|
+
with open(rendered_filename, "w") as f:
|
|
101
|
+
f.write(rendered_content)
|
|
100
102
|
return (rendered_filename,rendered_content)
|
|
101
103
|
|
|
102
104
|
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name="docker-stack",
|
|
5
|
-
version="0.2.
|
|
5
|
+
version="0.2.6",
|
|
6
6
|
description="CLI for deploying and managing Docker stacks.",
|
|
7
7
|
long_description=open("README.md").read(), # You can include a README file to describe your package
|
|
8
8
|
long_description_content_type="text/markdown",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|