From 087fd52344e1b8fbb5614029fc3c4cfdc500bc7e Mon Sep 17 00:00:00 2001 From: fghwett <1058178245@qq.com> Date: Mon, 16 Oct 2023 17:53:51 +0800 Subject: [PATCH] add nocodb --- Docker/nocodb/docker-compose.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Docker/nocodb/docker-compose.yml diff --git a/Docker/nocodb/docker-compose.yml b/Docker/nocodb/docker-compose.yml new file mode 100644 index 0000000..8dcfe92 --- /dev/null +++ b/Docker/nocodb/docker-compose.yml @@ -0,0 +1,22 @@ +version: "3.7" + +services: + nocodb: + container_name: nocodb + image: nocodb/nocodb:latest + restart: unless-stopped + environment: + - TZ=Asia/Shanghai + # - NC_DB=pg://root_db:5432?u=postgres&p=password&d=root_db + ports: + - "8080:8080" + volumes: + - ./data:/usr/app/data + networks: + nginx: + aliases: + - nocodb + +networks: + nginx: + external: true \ No newline at end of file