kamal 2.10.0 → 2.10.1
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.
- checksums.yaml +4 -4
- data/lib/kamal/configuration/accessory.rb +2 -8
- data/lib/kamal/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0a154bea7b15565394f37d8cbbfc8860e3d6ef337526779390ebd96d917d2d7e
|
|
4
|
+
data.tar.gz: a08c4cd341c5404cd9a5401b24918cdd32d498dbb778a655e1cb7f667030e519
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b09103e638d6d14d9605d3327928cf0343a80ff213e9e7f5f42d0c372c60ab78b13e30a983b1dc47e75cb17d7b705e94c98ea73077b8a2e1f87959f684e7a71d
|
|
7
|
+
data.tar.gz: db80e53f84048c1ee6a5f2d3a010469578cbeedb94826b2393dcd4552f9e063c70b42242b3ea705c659c02a9cc87b7311c8e372d106148bea5baaa261cf7811d
|
|
@@ -98,7 +98,7 @@ class Kamal::Configuration::Accessory
|
|
|
98
98
|
end
|
|
99
99
|
|
|
100
100
|
def volume_args
|
|
101
|
-
(specific_volumes + path_volumes(files) + path_volumes(directories)).flat_map(&:docker_args)
|
|
101
|
+
argumentize("--volume", specific_volumes) + (path_volumes(files) + path_volumes(directories)).flat_map(&:docker_args)
|
|
102
102
|
end
|
|
103
103
|
|
|
104
104
|
def option_args
|
|
@@ -170,13 +170,7 @@ class Kamal::Configuration::Accessory
|
|
|
170
170
|
end
|
|
171
171
|
|
|
172
172
|
def specific_volumes
|
|
173
|
-
|
|
174
|
-
host_path, container_path, options = volume_string.split(":", 3)
|
|
175
|
-
Kamal::Configuration::Volume.new \
|
|
176
|
-
host_path: host_path,
|
|
177
|
-
container_path: container_path,
|
|
178
|
-
options: options
|
|
179
|
-
end
|
|
173
|
+
accessory_config["volumes"] || []
|
|
180
174
|
end
|
|
181
175
|
|
|
182
176
|
def path_volumes(paths)
|
data/lib/kamal/version.rb
CHANGED