To Back Up your Integrations Config
- Run the command from SSH or Console:
- sudo docker exec dispatcher pg_dump -U postgres dispatch >dispatchdb.sql
- Save the file to another location of your choice, using terminal or FTP client
To Restore your Integrations Config
- Use terminal or FTP client to place the backup file into the /tmp directory
- Run the command from SSH or Console:
- sudo docker exec dispatcher dropdb dispatch && createdb -U postgres dispatch && psql -U postgres -d dispatch -f /tmp/dispatchdb.sql
- You must be logged in to reply to this topic.