mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 15:35:24 +02:00
* chore(deps): update dependencies and improve NocoDB configuration - Update vite-plugin-static-copy from 2.3.0 to 2.3.2 - Update Vite from 6.3.5 to 6.3.6 - Change NocoDB Docker image to use latest tag instead of specific version - Update PostgreSQL from 17 to 16.6 for better stability - Improve NocoDB configuration with proper environment variables - Add proper volume mounts for data persistence - Update healthcheck configuration for PostgreSQL service - Update NocoDB port from 8000 to 8080 in configuration * fix(docker-compose): improve healthcheck and formatting for nocodb service
27 lines
535 B
TOML
27 lines
535 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
postgres_user = "postgres"
|
|
postgres_password = "${password:32}"
|
|
postgres_db = "root_db"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "nocodb"
|
|
port = 8080
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
POSTGRES_USER = "${postgres_user}"
|
|
POSTGRES_PASSWORD = "${postgres_password}"
|
|
POSTGRES_DB = "${postgres_db}"
|
|
|
|
[[config.mounts]]
|
|
serviceName = "nocodb"
|
|
volumeName = "nc_data"
|
|
mountPath = "/usr/app/data"
|
|
|
|
[[config.mounts]]
|
|
serviceName = "root_db"
|
|
volumeName = "db_data"
|
|
mountPath = "/var/lib/postgresql/data"
|