Add docker-compose to bring up the environment and run the tests in one command

This commit is contained in:
2020-03-22 23:32:32 +11:00
parent 54f68df884
commit 04ebbe0dbe
+8
View File
@@ -0,0 +1,8 @@
version: "3"
services:
app:
image: gradle:jdk8
working_dir: /app
volumes:
- .:/app
command: ["gradle", "clean", "test"]