18 lines
365 B
YAML
Executable File
18 lines
365 B
YAML
Executable File
# run this with docker-compose run test
|
|
services:
|
|
test:
|
|
build:
|
|
context: ..
|
|
dockerfile: docker/Dockerfile.test
|
|
working_dir: /app
|
|
depends_on:
|
|
- mosquitto
|
|
environment:
|
|
- MOSQUITTO_SERVER=mosquitto
|
|
command: /bin/bash -xc "swift test"
|
|
|
|
mosquitto:
|
|
build:
|
|
context: ..
|
|
dockerfile: docker/Dockerfile.mosquitto
|