23 lines
413 B
YAML
23 lines
413 B
YAML
|
version: '2'
|
||
|
services:
|
||
|
tests:
|
||
|
build: .
|
||
|
depends_on:
|
||
|
- selenium
|
||
|
volumes:
|
||
|
- ./results:/results
|
||
|
selenium:
|
||
|
image: selenium/standalone-firefox
|
||
|
depends_on:
|
||
|
- rollerverbrauch
|
||
|
rollerverbrauch:
|
||
|
build: ..
|
||
|
volumes:
|
||
|
- ./compose_config/:/config
|
||
|
environment:
|
||
|
- config=/config/config.py
|
||
|
- DATABASE_ENV_MYSQL_ROOT_PASSWORD=foobar123
|
||
|
ports:
|
||
|
- 5000
|
||
|
|