Stacktora / Templates / App + Object storage (MinIO)
Storage

App + Object storage (MinIO) boilerplate

App with Postgres and S3-compatible MinIO object storage. One click generates a complete, runnable bootstrap — docker-compose, Makefile, Dockerfile, CI and more.

Use this template Browse all templates

The stack

Node.js 24 PostgreSQL 5432 MinIO 9000

docker-compose.yml preview

# docker-compose.yml — generated by Stacktora
services:
  app:
    image: node:24-alpine
    command: npm run dev
    ports:
      - "3000:3000"
    env_file: [ .env ]
  postgres:
    image: postgres:18-alpine
    ports:
      - "5432:5432"
  minio:
    image: minio/minio
    ports:
      - "9000:9000"
      - "9001:9001"

What you get

docker-compose.ymlMakefileDockerfileREADME.md.env.example.gitignore.dockerignore.github/workflows/ci.yml.tool-versions.editorconfigProcfile … and more

Quickstart

# clone, then one command to a running stack
git clone … && cd app
$ make setup   # install toolchain + deps, build images
$ make dev     # boot the full stack
# → app live at localhost:3000

Related templates

Open App + Object storage (MinIO) in Stacktora