| Safe Haskell | Safe |
|---|---|
| Language | Haskell98 |
Propellor.Types.Container
Documentation
A value that can be bound between the host and a container.
For example, a Bound Port is a Port on the container that is bound to a Port on the host.
Constructors
| Bound | |
Fields
| |
(-<-) :: (hostv ~ v, containerv ~ v) => hostv -> containerv -> Bound v Source #
Create a Bound value, from two different values for the host and container.
For example, Port 8080 -<- Port 80 means that port 8080 on the host
is bound to port 80 from the container.