15 lines
245 B
YAML
15 lines
245 B
YAML
|
|
version: '3.8'
|
||
|
|
|
||
|
|
services:
|
||
|
|
locust:
|
||
|
|
build: .
|
||
|
|
ports:
|
||
|
|
- "8089:8089"
|
||
|
|
volumes:
|
||
|
|
- ./test:/locust
|
||
|
|
command: ["locust", "-f", "locustfile.py", "--host", "http://<LMS_SERVER_IP>:5000"]
|
||
|
|
|
||
|
|
networks:
|
||
|
|
default:
|
||
|
|
driver: bridge
|