Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Commit

Permalink
fix: mongo docker-compose script
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielVZ96 committed Jan 31, 2024
1 parent 190c28f commit e48b040
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,8 @@ services:
# We use WiredTiger in all environments. In development environments we use small files
# to conserve disk space, and disable the journal for a minor performance gain.
# See https://docs.mongodb.com/v3.0/reference/program/mongod/#options for complete details.
command: mongod --nojournal --storageEngine wiredTiger
# --nojournal is not available in recent mongo versions, it's always enabled.
command: mongod --storageEngine wiredTiger
container_name: "edx.${COMPOSE_PROJECT_NAME:-devstack}.mongo"
hostname: mongo.devstack.edx
image: mongo:${MONGO_VERSION:-4.4.18}
Expand Down

0 comments on commit e48b040

Please sign in to comment.