From d8add289e2638808e900dd9bc1349a47ce8fa252 Mon Sep 17 00:00:00 2001 From: Hunter Long Date: Mon, 16 Mar 2020 00:56:03 -0700 Subject: [PATCH] updates --- docker-compose.test.yml | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 docker-compose.test.yml diff --git a/docker-compose.test.yml b/docker-compose.test.yml deleted file mode 100644 index a9b796b7..00000000 --- a/docker-compose.test.yml +++ /dev/null @@ -1,38 +0,0 @@ -version: '2.4' - -services: - - sut: - build: - context: . - dockerfile: ./Dockerfile.base - links: - - postgres - depends_on: - - postgres - entrypoint: make test - environment: - DB_CONN: postgres - DB_USER: root - DB_PASS: password123 - DB_HOST: postgres - DB_DATABASE: statping - API_KEY: exampleapikey - API_SECRET: exampleapisecret - NAME: Statping Testing - DOMAIN: http://localhost:8080 - DESCRIPTION: This is a TESTING environment - ADMIN_USER: admin - ADMIN_PASS: admin - - postgres: - image: postgres - environment: - POSTGRES_PASSWORD: password123 - POSTGRES_DB: statping - POSTGRES_USER: root - healthcheck: - test: ["CMD-SHELL", "pg_isready -U root"] - interval: 15s - timeout: 10s - retries: 20