Skip to content

Commit

Permalink
Use the latest mongo image in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
manthey committed Nov 19, 2023
1 parent 8ebd15c commit bad1c1c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ commands:
# just turned off journalling and run with the db on a memory mapped
# location. --bind_ip_all is required.
command: |
docker run --rm -d -p 127.0.0.1:27017:27017 mongo:5.0 bash -c "mkdir /dev/shm/mongo && mongod --nojournal --dbpath=/dev/shm/mongo --noauth --bind_ip_all"
# docker run --rm -d -p 127.0.0.1:27017:27017 mongo:5.0 bash -c "mkdir /dev/shm/mongo && mongod --nojournal --dbpath=/dev/shm/mongo --noauth --bind_ip_all"
docker run --rm -d -p 127.0.0.1:27017:27017 mongo:latest bash -c "mongod --noauth --bind_ip_all"
- run:
name: start rabbitmq
command: |
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 1.26.2

### Improvements
- Fix the DICOM limit to say "Series" instead of "Studies" ([#1379](../../pull/1379))

## 1.26.1

### Improvements
Expand Down

0 comments on commit bad1c1c

Please sign in to comment.