# Shiplet — Fastify Podman Example # Runtime: podman # Override runtime: SHIPLET_RUNTIME=docker shiplet up APP_PORT=3000 NODE_ENV=development TZ=UTC # MongoDB MONGO_USER=shiplet MONGO_PASSWORD=secret MONGO_DB=app MONGO_PORT=27017 MONGODB_URI=mongodb://shiplet:secret@mongo:27017/app?authSource=admin # Redis REDIS_URL=redis://redis:6379 REDIS_PORT=6379 # MinIO (S3-compatible) MINIO_ROOT_USER=shiplet MINIO_ROOT_PASSWORD=secretsecret MINIO_BUCKET=uploads MINIO_PORT=9000 MINIO_CONSOLE_PORT=9001 S3_ENDPOINT=http://minio:9000 # JWT JWT_SECRET=dev-secret-change-in-prod-please # Mailpit SMTP_HOST=mailpit SMTP_PORT=1025 MAILPIT_UI_PORT=8025 # Mongo Express GUI MONGO_EXPRESS_PORT=8081