Skip to content

Commit

Permalink
Tests: Fix running CrateDB in developer sandbox
Browse files Browse the repository at this point in the history
When `CRATEDB_VERSION` environment variable is not defined, for example
by the CI system, it needs a default value.
  • Loading branch information
amotl committed Dec 21, 2023
1 parent d82016f commit cd9a4fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "2.1"
services:
cratedb:
image: crate/crate:${CRATEDB_VERSION}
image: crate/crate:${CRATEDB_VERSION:-5.5.1}
environment:
CRATE_HEAP_SIZE: 2g
volumes:
Expand Down

0 comments on commit cd9a4fc

Please sign in to comment.