Skip to content

Commit

Permalink
Docker with mongo 6 (#1820)
Browse files Browse the repository at this point in the history
* Docker with mongo 6

* remove '--without development test' from bundle install indockerfile
  • Loading branch information
dczulada committed Jun 27, 2023
1 parent 2f8a114 commit f36945c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ADD Gemfile.lock /home/app/cypress/Gemfile.lock

RUN chown -R app:app .

RUN su app -c 'bundle install --without development test'
RUN su app -c 'bundle install'

ADD . /home/app/cypress

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
networks:
- cypress-net
mongodb:
image: mongo:4.4.14
image: mongo:6.0.6
volumes:
- /data/db
- ./mongo:/etc/mongo
Expand Down
2 changes: 1 addition & 1 deletion mongo/docker_mongod.conf
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
setParameter:
maxBSONDepth: 500
maxBSONDepth: 250

0 comments on commit f36945c

Please sign in to comment.