seto 2.2.1__tar.gz → 2.2.2__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.
- {seto-2.2.1 → seto-2.2.2}/PKG-INFO +1 -1
- {seto-2.2.1 → seto-2.2.2}/pyproject.toml +1 -1
- {seto-2.2.1 → seto-2.2.2}/seto/core/docker.py +2 -2
- {seto-2.2.1 → seto-2.2.2}/LICENSE +0 -0
- {seto-2.2.1 → seto-2.2.2}/LICENSE_HEADER.txt +0 -0
- {seto-2.2.1 → seto-2.2.2}/README.md +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/__init__.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/__main__.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/commands/config.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/commands/deploy.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/commands/down.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/commands/mount.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/commands/setup.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/commands/umount.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/commands/volumes.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/core/command.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/core/dns.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/core/driver.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/core/network.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/core/parser.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/core/permissions.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/core/shell.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/core/swarm.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/core/traefik.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/core/volume.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/drivers/gluster.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/drivers/nfs.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/shells/local.py +0 -0
- {seto-2.2.1 → seto-2.2.2}/seto/shells/remote.py +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "seto"
|
|
7
|
-
version = "2.2.
|
|
7
|
+
version = "2.2.2"
|
|
8
8
|
description = "A Docker Swarm Deployment Manager"
|
|
9
9
|
keywords = ["docker", "swarm", "manager"]
|
|
10
10
|
authors = ["Sébastien Demanou <demsking@gmail.com>"]
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
# ==============================================================================
|
|
15
15
|
import functools
|
|
16
|
+
import json
|
|
16
17
|
from typing import Any
|
|
17
18
|
|
|
18
|
-
import yaml
|
|
19
19
|
from docker import DockerClient
|
|
20
20
|
|
|
21
21
|
from .driver import Driver
|
|
@@ -40,7 +40,7 @@ class Docker:
|
|
|
40
40
|
|
|
41
41
|
@property
|
|
42
42
|
def resolved_config(self) -> str:
|
|
43
|
-
return resolve_env_vars(
|
|
43
|
+
return resolve_env_vars(json.dumps(self.config))
|
|
44
44
|
|
|
45
45
|
@property
|
|
46
46
|
def external_networks(self) -> list[str]:
|
|
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
|
|
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
|