summaryrefslogtreecommitdiff
path: root/doc/forum/Getting_Info_from_containers
diff options
context:
space:
mode:
authorJoey Hess2019-04-16 14:26:11 -0400
committerJoey Hess2019-04-16 14:26:11 -0400
commit22f13155ff5c4816bee1451704a421b1cd8f18da (patch)
treef4515198d4c0db785c52716b53010cca002e304f /doc/forum/Getting_Info_from_containers
parent3d4692e86e78e22f28f4e4dbe5f117f97588c1c1 (diff)
parent3f51ab3d723525e8bd6708ebede9df4e6b7d84b6 (diff)
Merge branch 'master' of ssh://propellor.branchable.com
Diffstat (limited to 'doc/forum/Getting_Info_from_containers')
-rw-r--r--doc/forum/Getting_Info_from_containers/comment_2_347f67e1be11f69fab571d8f9e7612b5._comment28
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/forum/Getting_Info_from_containers/comment_2_347f67e1be11f69fab571d8f9e7612b5._comment b/doc/forum/Getting_Info_from_containers/comment_2_347f67e1be11f69fab571d8f9e7612b5._comment
new file mode 100644
index 00000000..5db271fd
--- /dev/null
+++ b/doc/forum/Getting_Info_from_containers/comment_2_347f67e1be11f69fab571d8f9e7612b5._comment
@@ -0,0 +1,28 @@
+[[!comment format=mdwn
+ username="Nicolas.Schodet"
+ avatar="http://cdn.libravatar.org/avatar/0d7ec808ec329d04ee9a93c0da3c0089"
+ subject="containerToHost?"
+ date="2019-04-16T17:23:16Z"
+ content="""
+Would it be possible to add a `containerToHost` wrapper that takes a container
+and returns a host?
+
+It would be something like this:
+
+ hosts :: [Host]
+ hosts =
+ [ myHost
+ , myContainerHost
+ ]
+
+ myHost = host \"myhost.mydomain\" $ props
+ & ...
+ & myContainerSpawn myContainer
+
+ myContainer :: Systemd.Container
+ myContainer = Systemd.debContainer \"mycontainer\" $ props
+ & ...
+
+ myContainerHost = containerToHost \"mycontainer.mydomain\" myContainer
+
+"""]]