49 lines
1.4 KiB
Markdown
49 lines
1.4 KiB
Markdown
# Portainer Backup - November 18, 2025
|
|
|
|
This backup was created before resetting the Portainer database due to stale environment configurations causing the UI to show "environment unreachable" errors.
|
|
|
|
## Contents
|
|
|
|
### Docker Compose Files
|
|
- `all-containers-compose.yml` - Combined compose file for ALL running containers
|
|
- `container-*.yml` - Individual compose files for each container
|
|
|
|
### Database Backups
|
|
- `portainer-database-backup.db` - Full Portainer database from before reset (512KB)
|
|
- `portainer-automatic-backup.db.bak` - Automatic backup created by Portainer during upgrade
|
|
|
|
### Running Containers at Backup Time
|
|
1. portainer
|
|
2. windows
|
|
3. rincoin-node2
|
|
4. amd-strix-halo-llama-rocm
|
|
5. amd-strix-halo-llama-vulkan-radv
|
|
6. amd-strix-halo-llama-vulkan-amdvlk
|
|
7. docker-model-runner
|
|
|
|
## Restore Instructions
|
|
|
|
### To restore Portainer database:
|
|
```bash
|
|
docker stop portainer
|
|
docker run --rm -v /mnt/data/docker_vol/portainer:/data -v $(pwd):/backup alpine \
|
|
cp /backup/portainer-database-backup.db /data/portainer.db
|
|
docker start portainer
|
|
```
|
|
|
|
### To restore individual containers:
|
|
```bash
|
|
docker-compose -f container-NAME.yml up -d
|
|
```
|
|
|
|
### To restore all containers:
|
|
```bash
|
|
docker-compose -f all-containers-compose.yml up -d
|
|
```
|
|
|
|
## Notes
|
|
- The Portainer configuration export from the UI was not included (would need to be exported manually)
|
|
- These backups were generated using docker-autocompose tool
|
|
- Backup created: 2025-11-18 13:36:05
|
|
|