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.
drone-with-go/docker-compose.test.yml

22 lines
305 B
YAML

version: '2'
services:
app:
build:
context: .
dockerfile: ./docker/Dockerfile
ports:
- "8080:8080"
sut:
build:
context: .
dockerfile: ./docker/Dockerfile.sut
links:
- "app:target"
depends_on:
- app
environment:
SUT_TARGET: app