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
You can explicitly create a dump of your dockerized database while the docker containers are running using the command on the "Exec" tab of your mysql container:
25
27
26
28
```shell
@@ -153,6 +155,6 @@ docker exec mysql mysql -uas -pas123 archivesspace < /tmp/db.2025-02-26.164907.s
153
155
154
156
On docker Desktop, you can import your sql file into the `/tmp/` directrory using the "Files" tab of your mysql container. Afterwards, on the "Exec" tab run the command:
155
157
156
-
```shell
157
-
mysql -uas -pas123 archivesspace </tmp/db.2025-02-26.164907.sql
158
+
```shellgunzip -c /tmp/db.2026-02-17.155254.sql.gz | mysql -uas -pas123 archivesspace
159
+
gunzip -c /tmp/db.2026-02-17.155254.sql.gz | mysql -uas -pas123 archivesspace
0 commit comments