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

Database

H2, Myql, Postgresql

with postgresql:

environment:
      JDBC_HOST: postgresql
      JDBC_TYPE: postgresql
      JDBC_PORT: 5432
      JDBC_DB: snello
      JDBC_USERNAME: snello
      JDBC_PASSWORD: xxxx
      JDBC_DRIVER: org.postgresql.Driver
      MICRONAUT_DB_TYPE: postgresql

with mysql:

environment:
      JDBC_HOST: mysql
      JDBC_TYPE: mysql
      JDBC_PORT: 3306
      JDBC_DB: snello
      JDBC_USERNAME: snello
      JDBC_PASSWORD: xxxx
      JDBC_DRIVER: com.mysql.cj.jdbc.Driver
      MICRONAUT_DB_TYPE: mysql

with h2:

environment:
      JDBC_HOST: h2
      JDBC_TYPE: h2
      JDBC_PATH: 3306
      JDBC_DB: ./db/repository
      JDBC_USERNAME: sa
      JDBC_PASSWORD: ''
      JDBC_DRIVER: org.h2.Driver
      MICRONAUT_DB_TYPE: h2
PreviousDocker ImagesNextStorage

Last updated 2 years ago