Skip to content

Commit 950f6f2

Browse files
add nocodb service
1 parent eb9a2a9 commit 950f6f2

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

local/docker-compose.yml

+19
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,25 @@ services:
232232
# app_net:
233233
# ipv4_address: ${IP_NGROK_SERVICE}
234234

235+
# ------------------------------------------------------------
236+
# nocodb
237+
# ------------------------------------------------------------
238+
# nocodb:
239+
# depends_on:
240+
# - mysql
241+
# container_name: ${COMPOSE_PROJECT_NAME}_${NOCODB_SERVICE_NAME}
242+
# image: ${NOCODB_SERVICE}
243+
#
244+
# environment:
245+
# PORT: ${NOCODB_PORT}
246+
# # uncomment if you what to preconfigure a database to manage
247+
# # NC_DB: ${NOCODB_DB}
248+
# NC_BACKEND_URL: ${NOCODB_URL}
249+
#
250+
# networks:
251+
# app_net:
252+
# ipv4_address: ${IP_NOCODB_SERVICE}
253+
235254
################################################################################
236255
# NETWORK
237256
################################################################################

local/env.dist

+14
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ MAILHOG_SERVICE=mailhog/mailhog
6363
ELASTICSEARCH_SERVICE=docker.elastic.co/elasticsearch/elasticsearch-oss:7.5.2
6464
ELASTICSEARCH_HQ_SERVICE=elastichq/elasticsearch-hq
6565
NGROK_SERVICE=giuseppemorelli/devbox-ngrok
66+
NOCODB_SERVICE=nocodb/nocodb
6667

6768
################################################################################
6869
###
@@ -80,6 +81,7 @@ MAILHOG_SERVICE_NAME=mailhog
8081
ELASTICSEARCH_SERVICE_NAME=elasticsearch
8182
ELASTICSEARCH_HQ_SERVICE_NAME=elasticsearch-hq
8283
NGROK_SERVICE_NAME=ngrok
84+
NOCODB_SERVICE_NAME=nocodb
8385

8486
################################################################################
8587
###
@@ -144,6 +146,17 @@ XDEBUG_MODE=off
144146
XDEBUG_SESSION=DOCKERGM
145147
XDEBUG_CONFIG=client_port=9000
146148

149+
################################################################################
150+
###
151+
### NocoDB Settings
152+
###
153+
################################################################################
154+
155+
NOCODB_PORT=80
156+
# uncomment here and in docker-compose if you want to preconfigure a database do manage
157+
# NOCODB_DB="mysql2://${IP_MYSQL_SERVER}:3306?u=local&p=local&d=nocodb"
158+
NOCODB_URL="http://nocodb.local"
159+
147160
################################################################################
148161
###
149162
### IP Settings
@@ -162,3 +175,4 @@ IP_ELASTICSEARCH_HQ_SERVICE=172.16.250.16
162175
IP_REDISCOMMANDER_SERVER=172.16.250.17
163176
IP_NGROK_SERVICE=172.16.250.18
164177
IP_NODE_SERVER=172.16.250.19
178+
IP_NOCODB_SERVICE=172.16.250.20

0 commit comments

Comments
 (0)