The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
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.
 
 
 
 
 
 
wekan/docs/Platforms/FOSS/Docker/Move-Docker-containers-to-o...

1.1 KiB

Copy all docker containers and data to new server, replacing all of docker on new server:

ssh ubuntu@oldserver.com
cd repos/wekan
sudo su
docker-compose stop
systemctl stop docker
cd /var/lib
tar cvpzf docker.tar.gz docker
systemctl start docker
scp docker.tar.gz root@newserver.com:/var/lib/
exit
exit

Then on new server restore:

ssh ubuntu@newserver.com
sudo su
systemctl stop docker
cd /var/lib
mv docker old-docker
tar xpvzf docker.tar.gz
systemctl start docker
exit
exit

OLD INFO:

This page is work in progress, and needs more details.

  1. If you have installed Wekan with Docker like at this page:

https://github.com/wekan/wekan/wiki/Export-Docker-Mongo-Data

  1. and you want to move Docker containers to another computer (laptop, server etc) that also has Docker installed, use Docker export and import commands:

https://docs.docker.com/engine/reference/commandline/export/

https://docs.docker.com/engine/reference/commandline/import/

  1. If mongo data is on volume, also use this:

https://docs.docker.com/engine/tutorials/dockervolumes/#backup-restore-or-migrate-data-volumes