mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 04:35:39 +03:00
High-performance, schema-free document-oriented database http://www.mongodb.org ref #1182
14 lines
361 B
Text
14 lines
361 B
Text
# Mongodb essentials
|
|
MONGODB_EXEC="/usr/bin/mongod"
|
|
MONGODB_RUN="/var/run/mongodb"
|
|
MONGODB_DATA="/var/lib/mongodb"
|
|
MONGODB_USER="mongodb"
|
|
|
|
# Listen to specified IP, comment this to listen to all
|
|
MONGODB_IP="127.0.0.1"
|
|
|
|
# Listen to specified port
|
|
MONGODB_PORT="27017"
|
|
|
|
# Set extra options here, such as disabling the admin web server
|
|
MONGODB_OPTIONS="--journal"
|