File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,22 @@ docker run \
53
53
-it nocodb/nocodb:latest
54
54
```
55
55
56
+ ## with SQLite
57
+
58
+ ``` bash
59
+ docker run \
60
+ -d \
61
+ --name nocodb \
62
+ --tmpfs /run:nodev,nosuid,exec,mode=0755 \
63
+ -v ./nocodb:/usr/app/data \
64
+ -e nc_aio_postgres_enable=false \ # disable the builtin PostgreSQL
65
+ -e NC_AUTH_JWT_SECRET=" your-super-secret-string" \
66
+ -e NC_PUBLIC_URL=" __your_nocodb_domain__.com" \
67
+ -p 80:8080 \
68
+ --restart unless-stopped \
69
+ -it nocodb/nocodb:latest
70
+ ```
71
+
56
72
> Read the [ Configuring NocoDB section] ( ./configuring-nocodb#docker-image-configuration ) to review all supported options
57
73
58
74
> Once the container is running, you can access NocoDB by opening http://localhost in your web browser.
You can’t perform that action at this time.
0 commit comments