Skip to content

Commit bd76417

Browse files
committed
chore(self-hosting/docker): add sqlite section
1 parent 0005dfb commit bd76417

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

content/self-hosting/docker.mdx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,22 @@ docker run \
5353
-it nocodb/nocodb:latest
5454
```
5555

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+
5672
> Read the [Configuring NocoDB section](./configuring-nocodb#docker-image-configuration) to review all supported options
5773
5874
> Once the container is running, you can access NocoDB by opening http://localhost in your web browser.

0 commit comments

Comments
 (0)