Skip to content

Commit

Permalink
Use quotes for args
Browse files Browse the repository at this point in the history
GOLANG_VERSION was being caste as a float by YAML. Using quotes ensures it is treated as a string.
  • Loading branch information
matt0x6F committed Mar 19, 2024
1 parent d877af2 commit c00e15e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit c00e15e

Please sign in to comment.