From 0aa28c0ee24efafb933487c01d337e772f57abc5 Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Mon, 23 Jan 2023 15:09:13 +0000 Subject: [PATCH] Rename image "tests" for "dependencies" --- hosting/docker-compose.dev.yaml | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hosting/docker-compose.dev.yaml b/hosting/docker-compose.dev.yaml index 97f84cf3eb..9cc54172eb 100644 --- a/hosting/docker-compose.dev.yaml +++ b/hosting/docker-compose.dev.yaml @@ -3,8 +3,8 @@ version: "3" # optional ports are specified throughout for more advanced use cases. services: - dev-service: - container_name: budi-dev + dependencies: + container_name: budi-dependencies restart: on-failure image: budibase/dependencies ports: @@ -31,7 +31,7 @@ services: ports: - "${MAIN_PORT}:10000" depends_on: - - dev-service + - dependencies extra_hosts: - "host.docker.internal:host-gateway" environment: diff --git a/package.json b/package.json index ca16edd72c..724e5f37fc 100644 --- a/package.json +++ b/package.json @@ -66,7 +66,7 @@ "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:dependencies": "docker build -f hosting/dependencies/Dockerfile -t budibase/dependencies:local .", + "build:docker:dependencies": "docker build -f hosting/dependencies/Dockerfile -t budibase/dependencies:latest .", "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: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",