File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ docker-check:
3535.PHONY : integration-test
3636integration-test : docker-check
3737# docker run should only get executed once on initialization using the cache trick
38- integration-test : MONGO_EXE = $(shell docker run --rm -d mongo:4.2 )
38+ integration-test : MONGO_EXE = $(shell docker run --rm -d mongo:4.4 )
3939integration-test : MONGO_ID = $(call cache,MONGO_EXE)
4040integration-test : MONGO_IP = $(shell docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(MONGO_ID ) )
4141integration-test :
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ var MinMongoDBVersion = semver.Version{
2323// versions of MongoDB compatible with RITA
2424var MaxMongoDBVersion = semver.Version {
2525 Major : 4 ,
26- Minor : 3 ,
26+ Minor : 5 ,
2727 Patch : 0 ,
2828}
2929
Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ version: "3"
22
33services :
44 db :
5- image : mongo:4.2
5+ image : mongo:4.4.30
66 volumes :
77 - db:/data/db/
88
99 rita :
10- image : quay.io/activecm/rita-legacy :${VERSION:-latest}
10+ image : quay.io/activecm/rita:${VERSION:-latest}
1111 build : .
1212 links :
1313 # give db an alias of "localhost" so that RITA's default config works unchanged
Original file line number Diff line number Diff line change 44# activecountermeasures.com
55
66# CONSTANTS
7- _RITA_VERSION=" v4.8.0 "
8- _MONGO_VERSION=" 4.2 "
7+ _RITA_VERSION=" v4.8.2 "
8+ _MONGO_VERSION=" 4.4 "
99_MONGO_MIN_UPDATE_VERSION=" 4.0"
1010_NAME=$( basename " ${0} " )
1111_FAILED=" \e[91mFAILED\e[0m"
You can’t perform that action at this time.
0 commit comments