Deploy iRODS using Docker
Update configuration parameters set in config.inc
.
./build
Creates Docker volumes set in config.inc
.
By default, it creates three volumes, irods_volume
, db_volume
, and db_backup_volume
.
./controller create_volumes
./controller start
./controller stop
Backup DB data and creates a backup file on the volume db_backup_volume
.
./controller backup_db
Use cron
to backup DB data repeatedly.
echo "0 1 * * * root bash ${PWD}/controller backup_db" | sudo tee -a /etc/crontab > /dev/null