Add Makefile and docker-compose v3

This commit is contained in:
Christophe Mehay 2017-08-21 09:29:49 +02:00
parent f206ea354c
commit 3ee624d910
6 changed files with 102 additions and 1 deletions

23
Makefile Normal file
View file

@ -0,0 +1,23 @@
test:
tox
check:
pre-commit run --all-files
build:
docker-compose build
run: build
docker-compose up
build-v2:
docker-compose -f docker-compose.v2.yml build
run-v2: build-v2
docker-compose -f docker-compose.v2.yml up
build-v3:
docker-compose -f docker-compose.v3.yml build
run-v3: build-v3
docker-compose -f docker-compose.v3.yml up