.PHONY: test build run

build:
	docker-compose build

run:
	docker-compose up

test:
	docker-compose up --build --abort-on-container-exit
