mongodb/test/examples/extending-image
2018-10-29 09:35:21 +00:00
..
mongodb-cfg Pull changes from upstream repository. 2018-10-29 09:35:21 +00:00
mongodb-pre-init Pull changes from upstream repository. 2018-10-29 09:35:21 +00:00
mongodb-start Pull changes from upstream repository. 2018-10-29 09:35:21 +00:00
README.md Pull changes from upstream repository. 2018-10-29 09:35:21 +00:00

Image extending example

See image README.md for decription how to extend image using s2i.

What this example configuration does:

├── mongodb-cfg
│   └── mongod.conf			# Configuration file for mongod server
├── mongodb-init
│   ├── 11-init-backup-user.sh		# Create special user for backups
│   └── 50-initial-store.sh		# Store information in database
├── mongodb-pre-init
│   ├── 11-check-additional-user.sh	# Check that credentials for backups are provided
│   └── 20-setup-wiredtiger-cache.sh	# Overwrites default script for configuring wiredTiger cache
└── README.md