Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ docker-check:
.PHONY: integration-test
integration-test: docker-check
# docker run should only get executed once on initialization using the cache trick
integration-test: MONGO_EXE = $(shell docker run --rm -d mongo:4.2)
integration-test: MONGO_EXE = $(shell docker run --rm -d mongo:4.4)
integration-test: MONGO_ID = $(call cache,MONGO_EXE)
integration-test: MONGO_IP = $(shell docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(MONGO_ID))
integration-test:
Expand Down
2 changes: 1 addition & 1 deletion database/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var MinMongoDBVersion = semver.Version{
// versions of MongoDB compatible with RITA
var MaxMongoDBVersion = semver.Version{
Major: 4,
Minor: 3,
Minor: 5,
Patch: 0,
}

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ version: "3"

services:
db:
image: mongo:4.2
image: mongo:4.4.30
volumes:
- db:/data/db/

rita:
image: quay.io/activecm/rita-legacy:${VERSION:-latest}
image: quay.io/activecm/rita:${VERSION:-latest}
build: .
links:
# give db an alias of "localhost" so that RITA's default config works unchanged
Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
# activecountermeasures.com

# CONSTANTS
_RITA_VERSION="v4.8.0"
_MONGO_VERSION="4.2"
_RITA_VERSION="v4.8.2"
_MONGO_VERSION="4.4"
_MONGO_MIN_UPDATE_VERSION="4.0"
_NAME=$(basename "${0}")
_FAILED="\e[91mFAILED\e[0m"
Expand Down