update 26.8.7

This commit is contained in:
kun
2026-08-07 14:11:49 +08:00
parent efbd448bc5
commit ed10a25436
2 changed files with 58 additions and 21 deletions
+28 -1
View File
@@ -1,9 +1,36 @@
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:/usr/app/data
- /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