feat: add infrastructure dockerfile, droplet documentation, and gitea deployment workflow
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

This commit is contained in:
2026-05-31 06:51:18 +05:00
parent 83fbb16b6b
commit 5f0c6bed91
3 changed files with 176 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# 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"]