Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Awesome Cheatsheets | 33,706 | 4 days ago | 84 | mit | JavaScript | |||||
👩💻👨💻 Awesome cheatsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single file. | ||||||||||
Awesome Compose | 23,870 | 2 days ago | 7 | April 23, 2021 | 112 | cc0-1.0 | HTML | |||
Awesome Docker Compose samples | ||||||||||
Immudb | 8,235 | 15 | a day ago | 130 | August 25, 2022 | 102 | apache-2.0 | Go | ||
immudb - immutable database based on zero trust, SQL and Key-Value, tamperproof, data change history | ||||||||||
Coolify | 7,889 | a day ago | 270 | apache-2.0 | Svelte | |||||
An open-source & self-hostable Heroku / Netlify alternative. | ||||||||||
1panel | 5,052 | a day ago | 282 | gpl-3.0 | Go | |||||
🔥 🔥 🔥 现代化、开源的 Linux 服务器运维管理面板。 | ||||||||||
Docker | 4,777 | 2 days ago | 321 | agpl-3.0 | Shell | |||||
⛴ Docker image of Nextcloud | ||||||||||
Pgloader | 4,469 | a month ago | 1 | February 27, 2018 | 295 | other | Common Lisp | |||
Migrate to PostgreSQL in a single command! | ||||||||||
Manticoresearch | 3,527 | 2 days ago | 234 | gpl-2.0 | C++ | |||||
Easy to use open source fast database for search | Good alternative to Elasticsearch now | Drop-in replacement for E in the ELK soon | ||||||||||
Dockertest | 3,504 | 232 | 723 | a day ago | 87 | May 25, 2022 | 18 | apache-2.0 | Go | |
Write better integration tests! Dockertest helps you boot up ephermal docker images for your Go tests with minimal work. | ||||||||||
Dbmate | 3,432 | 1 | 8 days ago | 27 | March 25, 2022 | 16 | mit | Go | ||
:rocket: A lightweight, framework-agnostic database migration tool. |
Git-Repository to build Docker containerimage for MongoDB.
If you find this image helpfull, so you can see here how you can help:
Before reporting your issue please try updating Docker to the latest version and check if it resolves the issue. Refer to the Docker installation guide for instructions.
If that recommendations do not help then report your issue along with the following information:
docker version
and docker info
commandsdocker run
command or docker-compose.yml
used to start the image. Mask out the sensitive bits.Automated builds of the image are available on Dockerhub
docker pull mongocamp/mongodb:6.0.5
Alternatively you can build the image yourself.
docker build . --tag 'mongocamp/mongodb:dev';
Start MongoDB using:
docker run --publish 27017:27017 mongocamp/mongodb:6.0.5
Alternatively, you can use the sample docker-compose.yml file to start the container using Docker Compose
For MongoDB to persist the state of the container across shutdown and startup, you should mount a volume at the data directory. The container image use by default /var/lib/mongodb
.
You can cange the data directory with the Docker Environment Variable MONGO_DATA_DIR
.
The Quickstart and docker-compose.yml Sample command or the Quickstart bash command already mounts a volume for persistence.
Variable | Default Value | Informations |
---|---|---|
MONGO_DATA_DIR | /var/lib/mongodb | |
MONGO_ROOT_USERNAME | root | |
MONGO_PORT | 27017 | Specifies the TCP port on which the MongoDB |
MONGO_ROOT_PWD | NONE | If the param not equal NONE or "" the MongoDB authorization will enabled. The password of the MONGO_ROOT_USERNAME will be reseted on every container start. |
MONGO_LOG | STDOUT | Enable Loging to LogPath. Default is the stdout of the docker container, but you can also use something like /var/log/mongodb/mongo.log
|
MONGO_LOG
|
||
MONGO_STORAGEENGINE | wiredTiger | Value for the storageEngine parameter |
MONGO_WIREDTIGER_CACHE_SIZE_GB | NONE | Value for the wiredTigerCacheSizeGB parameter |
MONGO_MAX_CONNECTIONS | NONE | Value for the maxConns parameter if not equal NONE
|
MONGO_REPLICA_SET_NAME | NONE | If the param not equal NONE or "" set name for replSet replication options
|
MONGO_BINDING | --bind_ip_all | ip binding ip binding options |
MONGO_EXTRA_ARGS | You can use every mongod commandline option
|
|
MONGO_REPLICA_KEY | generate random | Used for communication between replica sets Replica Set to Keyfile Authentication |