You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
306 B
YAML
22 lines
306 B
YAML
7 years ago
|
version: '2'
|
||
|
|
||
|
services:
|
||
|
|
||
|
app:
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: ./docker/Dockerfile
|
||
|
ports:
|
||
|
- "8080:8080"
|
||
|
|
||
|
sut:
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: ./docker/Dockerfile.test
|
||
|
links:
|
||
|
- "app:target"
|
||
|
depends_on:
|
||
|
- app
|
||
|
environment:
|
||
|
SUT_TARGET: app
|