[dummy title body text appended to avoid empty title body]
wkw replied
if NC_DB is defined, then your meta data will be stored the DB u defined. otherwise, we ll create a sqlite db for u
Shard replied
```
nocodb:
image: nocodb/nocodb:0.90.8
container_name: nocodb
environment:
- NC_DB=pg://postgres:${POSTGRES_PORT}?u=${POSTGRES_USER}&p=${POSTGRES_USER_PASSWORD}&d=nocod
- NC_PUBLIC_URL=https://data.${DOMAIN}
depends_on:
- postgres
labels:
- “traefik.enable=true”
- “traefik.http.routers.nocodb.entrypoints=websecure”
- “traefik.http.routers.nocodb.rule=Host(data.${DOMAIN}
)”
- “traefik.http.routers.nocodb.tls=true”
restart: always
```
Shard replied
ok so that is why for example nocodb “system” tables and my own tables are in the same place?
Shard replied