Backup & Restore
I have Launched the only office using docker-compose and everything is working fine but i wanted move whole setup into inhouse server could anyone suggest me how to move all files and users list
@Carazyda @frederikmoellers
The easiest method would probably be to transfer the docker volumes and then run docker-compose on the target servers again. The suite will still run in docker, then.
If you want to move from docker to native, I guess you have to migrate all databases as well as files to the servers. Check the contents of the docker volumes. As far as I know everything that you need to migrate is on a docker volume that you can access using docker tools.
Hello @surendra10125 You need to copy all folders that you mounted to your docker containers with -v parameter. And then run docker-compose with mapping this folders.