Add clarification on PostgreSQL migration instructions
Created:
8/14/2025 12:39:15 PM by Steve Dennis
Status:
Awaiting Release on 8/14/2025 7:48:55 PM
Last pulled:
8/15/2025 10:00:30 PM
Description:
For linux installations, let's add a page/dialog that hits before the content on `MigrateToPostgresPage`.
## Let's Double-check Volume Mappings
When using the embedded PostgreSQL database backend, you will need to specify a `/var/proget/database` volume to store the database itself and a `/var/proget/backups` volume to specify backups of the database.
Otherwise, your new database will not be persisted on container restarts. For example,
```
docker run -d --name=proget --restart=unless-stopped \
-v ./proget-packages:/var/proget/packages \
-v ./proget-database:/var/proget/database \
-v ./proget-backups:/var/proget/backups \
-p 8624:80 \
proget.inedo.com/productimages/inedo/proget:latest
```
See the [Docker Installation Guide](https://docs.inedo.com/docs/installation/linux/docker-guide) for more information.