Files
lst/controller/docker-compose.yml

14 lines
395 B
YAML

services:
controller:
build:
context: .. # repo root
dockerfile: controller/Dockerfile
working_dir: /root
environment:
- RUNNING_IN_DOCKER=true
volumes:
- ..:/app # mount repo root for zipping, etc.
- ../builds:/builds # clean host->container builds mapping
ports:
- "8080:8080"