Browse Source

Merge pull request #200 from ferdiga/master

docker start text improved -
pull/209/head
o1lab 3 years ago committed by GitHub
parent
commit
64ebf05344
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      README.md

7
README.md

@ -42,8 +42,13 @@ Turns any MySQL, PostgreSQL, SQL Server, SQLite & MariaDB into a smart-spreadshe
### Using Docker
```bash
docker run -p 8080:8080 nocodb/nocodb
docker run --name nocodb -p 8080:8080 nocodb/nocodb
```
### Using Docker as daemon with named docker process as nocodb and access to databases on the host and automatic restart
```bash
docker run -d --name nocodb -p 8080:8080 --restart always --network=host nocodb/nocodb
```
### Using Npm
```
npx create-nocodb-app

Loading…
Cancel
Save