Update README.md

pull/171/head
Stefano Ortolani 2025-01-12 11:41:15 +00:00 committed by GitHub
parent ba41485277
commit a72a78a2c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 5 deletions

View File

@ -129,7 +129,13 @@ Custom root CA certificates can be mounted under `/usr/local/share/ca-certificat
# mount custom ca root certificates
- "./rootca.pem:/usr/local/share/ca-certificates/rootca.crt"
```
Backup and Restore MISP in Docker using Volume Archiving and Copy-Paste in another instance.
## Database Management
It is possible to backup and restore the underlying database using volume archiving.
The process is *NOT* battle-tested, so it is *NOT* to be followed uncritically.
### Backup
1. **Stop the MISP container**:
@ -147,15 +153,15 @@ Backup and Restore MISP in Docker using Volume Archiving and Copy-Paste in anoth
3. **Start the MISP container**:
```bash
docker compose up -d
docker compose up
```
## Restore
### Restore
1. **Stop the MISP container**:
```bash
docker compose down>
docker compose down
```
2. **Unpack the backup and overwrite the existing data**:
@ -168,7 +174,7 @@ Backup and Restore MISP in Docker using Volume Archiving and Copy-Paste in anoth
3. **Start the MISP container**:
```bash
docker compose up -d
docker compose up
```
## Troubleshooting