diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 4521615..895b02f 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,8 +4,7 @@
-
-
+
@@ -25,23 +24,23 @@
- {
+ "keyToString": {
+ "ASKED_SHARE_PROJECT_CONFIGURATION_FILES": "true",
+ "ModuleVcsDetector.initialDetectionPerformed": "true",
+ "RunOnceActivity.ShowReadmeOnStart": "true",
+ "RunOnceActivity.git.unshallow": "true",
+ "RunOnceActivity.typescript.service.memoryLimit.init": "true",
+ "SHARE_PROJECT_CONFIGURATION_FILES": "true",
+ "codeWithMe.voiceChat.enabledByDefault": "false",
+ "git-widget-placeholder": "main",
+ "last_opened_file_path": "/Users/kun/PycharmProjects/Docker_Compose/4600Pro/NocoDB",
+ "node.js.detected.package.jshint": "true",
+ "node.js.selected.package.jshint": "",
+ "nodejs_package_manager_path": "npm",
+ "settings.editor.selected.configurable": "configurable.group.project"
}
-}]]>
+}
@@ -78,6 +77,8 @@
+
+
@@ -167,7 +168,15 @@
1785392423458
-
+
+
+ 1786005435040
+
+
+
+ 1786005435040
+
+
@@ -176,6 +185,7 @@
-
+
+
\ No newline at end of file
diff --git a/4600Pro/NocoDB/docker-compose.yaml b/4600Pro/NocoDB/docker-compose.yaml
index ce6115a..5e222e0 100644
--- a/4600Pro/NocoDB/docker-compose.yaml
+++ b/4600Pro/NocoDB/docker-compose.yaml
@@ -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
\ No newline at end of file
+ - /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
\ No newline at end of file