diff --git a/.gitignore b/.gitignore index e745623b6..40ed88be3 100644 --- a/.gitignore +++ b/.gitignore @@ -72,9 +72,6 @@ credentials.yml util/PhotoMigration$Photo.class util/PhotoMigration.class -#development database -docker-compose.yml - speedtest/__pycache__ #Translation Models and Log diff --git a/integration_test/docker-compose.yml b/integration_test/docker-compose.yml new file mode 100644 index 000000000..5360d79f4 --- /dev/null +++ b/integration_test/docker-compose.yml @@ -0,0 +1,13 @@ +version: '3.8' + +services: + tester: + build: + context: . + dockerfile: Dockerfile + stdin_open: true + tty: true + stop_signal: SIGKILL + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - .:/app \ No newline at end of file