We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0005dfb commit bd76417Copy full SHA for bd76417
content/self-hosting/docker.mdx
@@ -53,6 +53,22 @@ docker run \
53
-it nocodb/nocodb:latest
54
```
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 \
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
72
> Read the [Configuring NocoDB section](./configuring-nocodb#docker-image-configuration) to review all supported options
73
74
> Once the container is running, you can access NocoDB by opening http://localhost in your web browser.
0 commit comments