多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1.2 KiB

title description position category menuTitle link
Upgrading Upgrading NocoDB : Docker, npm, Heroku! 2 Getting started Upgrading https://codesandbox.io/embed/vigorous-firefly-80kq5?hidenavigation=1&theme=dark

Docker

Updating nocodb docker container is similar to updating any other docker container.

Usually this involves the following

  • Find the nocodb image
  • Stop the nocodb docker container
  • Remove the nocodb docker container
  • Pull & Run the latest nocodb docker container

Please ensure you run latest docker container with same environment variables as before.

Node

Updating docker container is similar to updating a npm package.

From your root folder

Uninstall nocodb package

npm uninstall nocodb

Install nocodb package

npm install --save nocodb

Heroku

Use Heroku CLI login

heroku container:login
docker pull nocodb/nocodb:latest
docker tag nocodb/nocodb:latest registry.heroku.com/<Heroku App Name>/web
docker push registry.heroku.com/<Heroku App Name>/web
heroku container:release -a <Heroku App Name> web