diff --git a/docker-compose.build-and-test.yml b/docker-compose.build-and-test.yml deleted file mode 100644 index dbbb16d9b..000000000 --- a/docker-compose.build-and-test.yml +++ /dev/null @@ -1,17 +0,0 @@ -version: "3.4" - -services: - webapp: - environment: - - "CI=${CI}" - image: ocelotsocialnetwork/develop-webapp:build-and-test - build: - context: webapp - target: build-and-test - backend: - environment: - - "CI=${CI}" - image: ocelotsocialnetwork/develop-backend:build-and-test - build: - context: backend - target: build-and-test diff --git a/docker-compose.production.yml b/docker-compose.production.yml deleted file mode 100644 index 0eec3126c..000000000 --- a/docker-compose.production.yml +++ /dev/null @@ -1,21 +0,0 @@ -version: "3.4" - -services: - webapp: - build: - context: webapp - target: production - args: - - "BUILD_COMMIT=${TRAVIS_COMMIT}" - backend: - image: ocelotsocialnetwork/backend:latest - build: - context: ./backend - target: production - args: - - "BUILD_COMMIT=${TRAVIS_COMMIT}" - neo4j: - build: - context: neo4j - args: - - "BUILD_COMMIT=${TRAVIS_COMMIT}"