docker-utils 0.1.17 → 0.1.18
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/share/scripts/define-ambassador-service +1 -7
- data/share/scripts/define-service +1 -7
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa388f3e0e9fe529c0b460b14a2b75d364674622
|
4
|
+
data.tar.gz: a37348cf47aebed81d8286a30029049d4f8ea2a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 570e5ef71a50d18f6dc3eeb2765e532661a042bc96e7f93b91ab1c1bc87a9352c5d3aa5a6bdc0df95daec6f273ec39eed178c3c37949ded2a713725fa142cf1c
|
7
|
+
data.tar.gz: 759c8d2fc335cf03ce1ce028bfddc61e939b2b8d73c401f72e09428a262f89d4f6db65a36189bb7253b24b3c4e270392159fd5336bff42c76e1c0acfdf911739
|
@@ -49,13 +49,7 @@ script
|
|
49
49
|
'${remote_host}' '${remote_port}'
|
50
50
|
)
|
51
51
|
|
52
|
-
|
53
|
-
( logger -t "${container_name}" <"${pipe_path}" & )
|
54
|
-
exec >"${pipe_path}"
|
55
|
-
exec 2>"${pipe_path}"
|
56
|
-
rm "${pipe_path}"
|
57
|
-
|
58
|
-
exec docker attach --sig-proxy=true "\${running_container_id}"
|
52
|
+
exec docker attach --sig-proxy=true "\${running_container_id}" | logger -t "${service_name}"
|
59
53
|
end script
|
60
54
|
EOF
|
61
55
|
|
@@ -119,13 +119,7 @@ script
|
|
119
119
|
${command_args[@]} \
|
120
120
|
)
|
121
121
|
|
122
|
-
|
123
|
-
( logger -t "${container_name}" <"${pipe_path}" & )
|
124
|
-
exec >"${pipe_path}"
|
125
|
-
exec 2>"${pipe_path}"
|
126
|
-
rm "${pipe_path}"
|
127
|
-
|
128
|
-
exec docker attach --sig-proxy=true "\${running_container_id}"
|
122
|
+
exec docker attach --sig-proxy=true "\${running_container_id}" | logger -t "${service_name}"
|
129
123
|
end script
|
130
124
|
EOF
|
131
125
|
|