2017-11-26 22:44:32 +01:00
---
date: "2017-01-01T16:00:00+02:00"
title: "Usage: Backup and Restore"
slug: "backup-and-restore"
weight: 11
toc: true
draft: false
menu:
sidebar:
parent: "usage"
name: "Backup and Restore"
weight: 11
identifier: "backup-and-restore"
---
# Backup and Restore
2018-01-08 23:48:42 +01:00
Gitea currently has a `dump` command that will save the installation to a zip file. This
file can be unpacked and used to restore an instance.
2017-11-26 22:44:32 +01:00
## Backup Command (`dump`)
2019-04-10 15:34:44 +02:00
Switch to the user running Gitea: `su git` . Run `./gitea dump -c /path/to/app.ini` in the Gitea installation
2018-01-08 23:48:42 +01:00
directory. There should be some output similar to the following:
2017-11-26 22:44:32 +01:00
2019-04-10 15:34:44 +02:00
```none
2017-11-26 22:44:32 +01:00
2016/12/27 22:32:09 Creating tmp work dir: /tmp/gitea-dump-417443001
2016/12/27 22:32:09 Dumping local repositories.../home/git/gitea-repositories
2016/12/27 22:32:22 Dumping database...
2016/12/27 22:32:22 Packing dump files...
2016/12/27 22:32:34 Removing tmp work dir: /tmp/gitea-dump-417443001
2016/12/27 22:32:34 Finish dumping in file gitea-dump-1482906742.zip
```
2018-01-08 23:48:42 +01:00
Inside the `gitea-dump-1482906742.zip` file, will be the following:
2017-11-26 22:44:32 +01:00
2019-04-05 15:24:28 +02:00
* `app.ini` - Optional copy of configuration file if originally stored outside of the default `custom/` directory
2019-04-10 15:34:44 +02:00
* `custom` - All config or customization files in `custom/` .
2018-06-09 01:47:51 +02:00
* `data` - Data directory in < GITEA_WORK_DIR > , except sessions if you are using file session. This directory includes `attachments` , `avatars` , `lfs` , `indexers` , sqlite file if you are using sqlite.
2018-01-08 23:48:42 +01:00
* `gitea-db.sql` - SQL dump of database
* `gitea-repo.zip` - Complete copy of the repository directory.
* `log/` - Various logs. They are not needed for a recovery or migration.
2017-11-26 22:44:32 +01:00
2018-01-08 23:48:42 +01:00
Intermediate backup files are created in a temporary directory specified either with the
`--tempdir` command-line parameter or the `TMPDIR` environment variable.
2017-11-26 22:44:32 +01:00
2019-04-08 14:45:29 +02:00
### Using Docker (`dump`)
2019-04-10 15:34:44 +02:00
2019-04-08 14:45:29 +02:00
There are a few caveats for using the `dump` command with Docker.
The command has to be executed with the `RUN_USER = <OS_USERNAME>` specified in `gitea/conf/app.ini` ; and, for the zipping of the backup folder to occur without permission error the command `docker exec` must be executed inside of the `--tempdir` .
Example:
2019-04-10 15:34:44 +02:00
```none
docker exec -u < OS_USERNAME > -it -w < --tempdir > $(docker ps -qf "name=< NAME_OF_DOCKER_CONTAINER > ") bash -c '/app/gitea/gitea dump -c < /path/to/app.ini>'
```
2019-04-08 14:45:29 +02:00
2019-04-10 15:34:44 +02:00
*Note: `--tempdir` refers to the temporary directory of the docker environment used by Gitea; if you have not specified a custom `--tempdir` , then Gitea uses `/tmp` or the `TMPDIR` environment variable of the docker container. For `--tempdir` adjust your `docker exec` command options accordingly.
2019-04-08 14:45:29 +02:00
The result should be a file, stored in the `--tempdir` specified, along the lines of: `gitea-dump-1482906742.zip`
2017-11-26 22:44:32 +01:00
## Restore Command (`restore`)
2018-01-08 23:48:42 +01:00
There is currently no support for a recovery command. It is a manual process that mostly
involves moving files to their correct locations and restoring a database dump.
Example:
2019-04-10 15:34:44 +02:00
```none
2018-01-08 23:48:42 +01:00
apt-get install gitea
unzip gitea-dump-1482906742.zip
cd gitea-dump-1482906742
2019-04-05 15:24:28 +02:00
mv custom/conf/app.ini /etc/gitea/conf/app.ini # or mv app.ini /etc/gitea/conf/app.ini
2018-01-08 23:48:42 +01:00
unzip gitea-repo.zip
mv gitea-repo/* /var/lib/gitea/repositories/
chown -R gitea:gitea /etc/gitea/conf/app.ini /var/lib/gitea/repositories/
mysql -u$USER -p$PASS $DATABASE < gitea-db.sql
# or sqlite3 $DATABASE_PATH <gitea-db.sql
service gitea restart
```