Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
triflix
/
mongodb
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
mongodb
/
Dockerfile
triflix
Create Dockerfile
15f2668
verified
8 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
165 Bytes
# Use official MongoDB image
FROM
mongo:
7.0
# Expose default MongoDB port
EXPOSE
27017
# Run MongoDB allowing external connections
CMD
[
"mongod"
,
"--bind_ip_all"
]