docker mongo-express

docker run -d \
--name mongo-express \
--link mongo:mongo \
-p 8081:8081 \
-e ME_CONFIG_MONGODB_ENABLE_ADMIN="false" \
-e ME_CONFIG_MONGODB_ADMINUSERNAME=$username \
-e ME_CONFIG_MONGODB_ADMINPASSWORD=$pwd \
-e ME_CONFIG_MONGODB_AUTH_DATABASE="reqo" \
-e ME_CONFIG_MONGODB_AUTH_USERNAME="reqo" \
-e ME_CONFIG_MONGODB_AUTH_PASSWORD="123456" \

你可能感兴趣的:(docker mongo-express)