From f94f4b2e9fd02e079d190f92cc3e5049092852cc Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Mon, 23 Jan 2023 10:45:59 +0000 Subject: [PATCH] Renamings --- hosting/dependencies/Dockerfile | 2 +- hosting/docker-compose.dev.yaml | 2 +- ...-testcontainers-config.js => jest-testcontainers-config.js | 2 +- package.json | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) rename hosting/dependencies/jest-testcontainers-config.js => jest-testcontainers-config.js (83%) diff --git a/hosting/dependencies/Dockerfile b/hosting/dependencies/Dockerfile index eb35c19847..859ba10c83 100644 --- a/hosting/dependencies/Dockerfile +++ b/hosting/dependencies/Dockerfile @@ -12,7 +12,7 @@ RUN chmod +x install.sh && ./install.sh WORKDIR / -ADD hosting/tests/runner.sh . +ADD hosting/dependencies/runner.sh . RUN chmod +x ./runner.sh EXPOSE 5984 diff --git a/hosting/docker-compose.dev.yaml b/hosting/docker-compose.dev.yaml index a6752ad67c..97f84cf3eb 100644 --- a/hosting/docker-compose.dev.yaml +++ b/hosting/docker-compose.dev.yaml @@ -6,7 +6,7 @@ services: dev-service: container_name: budi-dev restart: on-failure - image: budibase/tests + image: budibase/dependencies ports: - "${MINIO_PORT}:9000" - "9001:9001" diff --git a/hosting/dependencies/jest-testcontainers-config.js b/jest-testcontainers-config.js similarity index 83% rename from hosting/dependencies/jest-testcontainers-config.js rename to jest-testcontainers-config.js index debff4a722..6bf29db9bd 100644 --- a/hosting/dependencies/jest-testcontainers-config.js +++ b/jest-testcontainers-config.js @@ -1,6 +1,6 @@ module.exports = { devEnv: { - image: "budibase/tests", + image: "budibase/dependencies", tag: "latest", ports: [6379, 5984, 9000], env: {}, diff --git a/package.json b/package.json index 6b509ccf84..ca16edd72c 100644 --- a/package.json +++ b/package.json @@ -66,9 +66,9 @@ "build:docker:single:multiarch": "docker buildx build --platform linux/arm64,linux/amd64 -f hosting/single/Dockerfile -t budibase:latest .", "build:docker:single:image": "docker build -f hosting/single/Dockerfile -t budibase:latest .", "build:docker:single": "npm run build:docker:pre && npm run build:docker:single:image", - "build:docker:tests": "docker build -f hosting/tests/Dockerfile -t budibase/tests:local .", + "build:docker:dependencies": "docker build -f hosting/dependencies/Dockerfile -t budibase/dependencies:local .", "publish:docker:couch": "docker buildx build --platform linux/arm64,linux/amd64 -f hosting/couchdb/Dockerfile -t budibase/couchdb:latest -t budibase/couchdb:v3.2.1 --push ./hosting/couchdb", - "publish:docker:tests": "docker buildx build --platform linux/arm64,linux/amd64 -f hosting/tests/Dockerfile -t budibase/tests:latest -t budibase/tests:v3.2.1 --push ./hosting", + "publish:docker:dependencies": "docker buildx build --platform linux/arm64,linux/amd64 -f hosting/dependencies/Dockerfile -t budibase/dependencies:latest -t budibase/dependencies:v3.2.1 --push ./hosting", "build:docs": "lerna run build:docs", "release:helm": "node scripts/releaseHelmChart", "env:multi:enable": "lerna run env:multi:enable",