Browse Source

Added update script to package

develop
Rob Colbert 2 months ago
parent
commit
985d6619a4
  1. 5
      package.json

5
package.json

@ -3,10 +3,11 @@
"version": "1.0.1",
"description": "A skeleton for getting started with a self-hosted n8n environment running in Docker Compose.",
"scripts": {
"start": "cd docker-compose/withPostgres && docker compose up -d",
"restart": "cd docker-compose/withPostgres && docker compose restart",
"start": "cd docker-compose/withPostgres && docker compose up -d",
"stats": "cd docker-compose/withPostgres && docker compose stats",
"stop": "cd docker-compose/withPostgres && docker compose down"
"stop": "cd docker-compose/withPostgres && docker compose down",
"update": "cd docker-compose/withPostgres && docker compose pull"
},
"keywords": [
"DTP",

Loading…
Cancel
Save