From 9f6009b76dcd82382f70bbc1648347d645612913 Mon Sep 17 00:00:00 2001 From: Matt Date: Tue, 19 Mar 2024 21:42:37 -0700 Subject: [PATCH] Use quotes for docker-compose args (#1925) --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index cb5910de..67ddf92a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,7 +5,7 @@ services: context: . dockerfile: cmd/proxy/Dockerfile args: - GOLANG_VERSION: 1.20 + GOLANG_VERSION: "1.20" environment: - ATHENS_MONGO_STORAGE_URL=mongodb://mongo:27017 - TIMEOUT=20 # in case the mongo dependency takes longer to start up @@ -20,7 +20,7 @@ services: context: . dockerfile: Dockerfile.test args: - GOLANG_VERSION: 1.20 + GOLANG_VERSION: "1.20" command: ["./scripts/test_unit.sh"] environment: - GO_ENV=test @@ -36,7 +36,7 @@ services: context: . dockerfile: Dockerfile.test args: - GOLANG_VERSION: 1.20 + GOLANG_VERSION: "1.20" command: ["./scripts/test_e2e.sh"] azurite: image: arafato/azurite:2.6.5