Skip to content
Open
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: 2 additions & 0 deletions caching/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,5 @@ services:
- '27017:27017'
volumes:
- ./mongo-data/:/data/db
security_opt:
- no-new-privileges:true
Comment on lines +37 to +38

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The security_opt value currently uses 'no-new-privileges:true', which is not a valid flag for Docker's security options. The correct syntax is "security_opt: - no-new-privileges" (i.e., a single boolean flag in the list). Without this correction, the no-new-privileges setting may be ignored.

Loading