Thank you.
Does it mean that I must stay with the SQL server version and do not migrate to the one with PostGres.
Posts made by certificatemanager_4002
-
RE: Migration from SQLServer to PostGresposted in Support
-
RE: Proget: Move data to another folderposted in Support
@Sigve-opedal_6476
Here is a solution
Create a network.
With that proget can reach inedo as they will be into the same network.
docker network create inedo-netInedo
docker run -d --name inedodb
--network inedo-net
-v ./inedo-data:/var/lib/postgresql/data
proget.inedo.com/productimages/inedo/inedodb:17.6sudo chown 1000:1000 proget-database
Proget
docker run -d --name proget
--network inedo-net
-p 8624:80
-v ./proget-packages:/var/proget/packages
-v ./proget-backups:/var/proget/backups
-v ./proget-database:/var/proget/database
-e INEDO_DB_TYPE=inedodb
-e INEDO_DB_HOST=inedodb
-e INEDO_DB_USER=proget \
proget.inedo.com/productimages/inedo/proget:latestI got also lot's of issue because the database directory must be empty.
I hope it will help you. -
Migration from SQLServer to PostGresposted in Support
From the documentation, I understand that the latest version will use InedoDB. Since this database is a hardened version of PostgreSQL, is there any way to deploy it in a highly‑available StatefulSet configuration on Kubernetes?