snello CMS
  • Snello CMS
  • Get Started
  • Architecture
    • Snello API
    • Snello ADMIN
  • Docker Images
    • Database
    • Storage
    • Mail settings
    • Docker compose
  • Metadata
    • UUIDs
    • To reuse existing database tables
    • Advanced configuration
    • Reserved Metadata Names
  • Field Definitions
    • Data Types
    • Multijoin: database and rest queries
    • CRUD options
  • How to query using REST API
    • metadata api
    • filters & limit & sort
      • protect your api
  • Conditions
    • Multijoin conditions
  • Documents
    • Download endpoint
  • How to publish your web pages
  • Select Queries
  • Authentication & Authorization
    • User & Roles
    • Password recovery
    • Url Map Rules
  • Links
  • Draggables & Droppables
    • angular syntax
  • Deploy in Production
    • Let’s Encrypt
    • Remove Hashbang
    • Traefik
    • Rendertron
  • Notes
    • Micronaut - create extensions
    • Native image
    • Editor for code
    • Multi languages
  • k8s cache distributed
  • Developers Space
    • Java code
    • Angular code
  • Roadmap
    • Java Evolution
    • Angular Evolution
    • Next features
Powered by GitBook
On this page
Edit on GitHub
  1. Docker Images

Storage

File System or S3

using fs (file system):

environment:
        MICRONAUT_STORAGE_TYPE: fs
        MICRONAUT_ROUTER.STATIC-RESOURCES_FILES_PATHS: /xxx/yyy

using s3 (object storage aws compliant)

environment:
        MICRONAUT_STORAGE_TYPE: s3
        MICRONAUT_S3_ENDPOINT: https://xxxxx.minio.io
        MICRONAUT_S3_ACCESSKEY: accesskey
        MICRONAUT_S3_SECRETKEY: password
        MICRONAUT_S3_BUCKETNAME: bucket_name
        MICRONAUT_S3_REGION: us-east-1
        MICRONAUT_S3_FOLDER: 'folder'
PreviousDatabaseNextMail settings

Last updated 2 years ago