- Replaced `easymapping` configuration with `containers` for better maintainability and clarity. - Introduced `DockerComposeFixture` class in `utils.py` to manage Docker Compose lifecycle and smart build strategy. - Enhanced YAML-to-environment variable conversion in `ContainerEnv` for dynamic configuration support. - Updated HAProxy configurations and test fixtures to reflect the new format. - Improved test coverage for YAML parsing, environment variable handling, and HAProxy config generation.
13 lines
203 B
YAML
13 lines
203 B
YAML
stats:
|
|
username: admin
|
|
password: test123
|
|
port: 1936
|
|
|
|
customerrors: true
|
|
|
|
containers:
|
|
"host1.com:80":
|
|
ip: ["webapp:8080"]
|
|
|
|
"host2.com:80":
|
|
ip: ["webapp:8080"] # Same container as host1
|