Struct mx_tester::ContainerConfig [−][src]
pub struct ContainerConfig {
pub port_mapping: String,
pub hostname: String,
pub docker_network: Option<String>,
pub public_url: String,
pub server_name: String,
}Expand description
The configuration for a single synapse container. We copy some fields from the main config for simplicity.
Fields
port_mapping: StringThe docker port configuration. e.g. 9999:9999.
hostname: StringThe hostname of the synapse container.
docker_network: Option<String>The name of a docker network to place the container in.
public_url: StringThe URL that can be used to access this container from the host.
server_name: StringThe name of the synapse server.