docker-stack 0.2.0__tar.gz → 0.2.1__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.
Files changed (21) hide show
  1. {docker-stack-0.2.0 → docker-stack-0.2.1}/PKG-INFO +1 -1
  2. {docker-stack-0.2.0 → docker-stack-0.2.1}/docker_stack/cli.py +0 -1
  3. {docker-stack-0.2.0 → docker-stack-0.2.1}/docker_stack.egg-info/PKG-INFO +1 -1
  4. {docker-stack-0.2.0 → docker-stack-0.2.1}/setup.py +1 -1
  5. {docker-stack-0.2.0 → docker-stack-0.2.1}/README.md +0 -0
  6. {docker-stack-0.2.0 → docker-stack-0.2.1}/docker_stack/__init__.py +0 -0
  7. {docker-stack-0.2.0 → docker-stack-0.2.1}/docker_stack/compose.py +0 -0
  8. {docker-stack-0.2.0 → docker-stack-0.2.1}/docker_stack/docker_objects.py +0 -0
  9. {docker-stack-0.2.0 → docker-stack-0.2.1}/docker_stack/envsubst.py +0 -0
  10. {docker-stack-0.2.0 → docker-stack-0.2.1}/docker_stack/envsubst_merge.py +0 -0
  11. {docker-stack-0.2.0 → docker-stack-0.2.1}/docker_stack/helpers.py +0 -0
  12. {docker-stack-0.2.0 → docker-stack-0.2.1}/docker_stack/merge_conf.py +0 -0
  13. {docker-stack-0.2.0 → docker-stack-0.2.1}/docker_stack/registry.py +0 -0
  14. {docker-stack-0.2.0 → docker-stack-0.2.1}/docker_stack/url_parser.py +0 -0
  15. {docker-stack-0.2.0 → docker-stack-0.2.1}/docker_stack.egg-info/SOURCES.txt +0 -0
  16. {docker-stack-0.2.0 → docker-stack-0.2.1}/docker_stack.egg-info/dependency_links.txt +0 -0
  17. {docker-stack-0.2.0 → docker-stack-0.2.1}/docker_stack.egg-info/entry_points.txt +0 -0
  18. {docker-stack-0.2.0 → docker-stack-0.2.1}/docker_stack.egg-info/requires.txt +0 -0
  19. {docker-stack-0.2.0 → docker-stack-0.2.1}/docker_stack.egg-info/top_level.txt +0 -0
  20. {docker-stack-0.2.0 → docker-stack-0.2.1}/pyproject.toml +0 -0
  21. {docker-stack-0.2.0 → docker-stack-0.2.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: docker-stack
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: CLI for deploying and managing Docker stacks.
5
5
  Home-page: https://github.com/mesuidp/docker-stack
6
6
  Author: Sudip Bhattarai
@@ -216,7 +216,6 @@ def main(args:List[str]=None):
216
216
 
217
217
  docker = Docker(registries=args.user)
218
218
  docker.load_env()
219
- docker.check_env()
220
219
 
221
220
  if args.command == "build":
222
221
  docker.stack.build_and_push(args.compose_file,push=args.push)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: docker-stack
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: CLI for deploying and managing Docker stacks.
5
5
  Home-page: https://github.com/mesuidp/docker-stack
6
6
  Author: Sudip Bhattarai
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="docker-stack",
5
- version="0.2.0",
5
+ version="0.2.1",
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