You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/faq/page.tsx
+78Lines changed: 78 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -80,6 +80,14 @@ export default function FAQPage() {
80
80
text: "Postgresus uses the directory format with zstd compression because it provides the most efficient backup and restore speed after extensive testing. The directory format with zstd compression level 5 offers the optimal balance between backup creation speed, restore speed and file size.",
81
81
},
82
82
},
83
+
{
84
+
"@type": "Question",
85
+
name: "How to update Postgresus?",
86
+
acceptedAnswer: {
87
+
"@type": "Answer",
88
+
text: "To update Postgresus, navigate to your Postgresus directory (usually /opt/postgresus) and run: docker compose stop, docker system prune -a, docker compose up -d. For Docker run, stop and remove the container first, then prune and run a new container with the latest image.",
89
+
},
90
+
},
83
91
{
84
92
"@type": "Question",
85
93
name: "Where is Postgresus installed?",
@@ -229,6 +237,76 @@ export default function FAQPage() {
229
237
support. So this is priority in addition to current dump format.
230
238
</p>
231
239
240
+
<h2id="how-to-update">How to update Postgresus?</h2>
241
+
242
+
<p>
243
+
To update Postgresus to the latest version, you need to stop the
244
+
current container, remove old images and start it again with
245
+
the latest image.
246
+
</p>
247
+
248
+
<h3id="update-docker-compose">Update with Docker Compose:</h3>
249
+
250
+
<p>
251
+
Navigate to your Postgresus directory (usually{" "}
0 commit comments