Files
Htmx/Infra.DockerFile
T
shaamilahmed 5f0c6bed91
Production Deployment / Build and Push Docker Image (push) Failing after 11m59s
Production Deployment / Deploy to DigitalOcean Droplet (push) Has been skipped
Production Deployment / Deploy to Google Cloud Run (push) Has been skipped
feat: add infrastructure dockerfile, droplet documentation, and gitea deployment workflow
2026-05-31 06:51:18 +05:00

15 lines
337 B
Docker

# Custom MongoDB Infrastructure Dockerfile for the "dockernet" network
FROM mongo:7.0-noble
# Set metadata labels
LABEL description="Custom MongoDB image for Stick template infrastructure"
# Expose standard port
EXPOSE 27017
# Default persistent volume location
VOLUME /data/db
# CMD starts the standard mongod daemon
CMD ["mongod"]