update 26.8.10

This commit is contained in:
kun
2026-08-10 09:01:12 +08:00
parent ed10a25436
commit f5ea9ec8bb
3 changed files with 14 additions and 42 deletions
-36
View File
@@ -1,36 +0,0 @@
services:
noco:
image: nocodb/nocodb:latest
container_name: noco
restart: unless-stopped
depends_on:
- postgres
ports:
- "2800:8080"
environment:
NC_DB: "pg://postgres:5432?u=nocodb&p=nocodb123&d=nocodb"
NC_AUTH_JWT_SECRET: "change_this_to_random_string"
volumes:
- /volume2/docker/docker_projects/nocodb/data:/usr/app/data
networks:
- nocodb
postgres:
image: postgres:16
container_name: nocodb-postgres
restart: unless-stopped
environment:
POSTGRES_DB: nocodb
POSTGRES_USER: nocodb
POSTGRES_PASSWORD: nocodb123
volumes:
- /volume2/docker/docker_projects/nocodb/postgres:/var/lib/postgresql/data
networks:
- nocodb
networks:
nocodb:
driver: bridge