We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e083fd commit 6fc751cCopy full SHA for 6fc751c
.gitignore
@@ -333,3 +333,5 @@ exports/
333
*prototype*
334
335
*credentials*
336
+
337
+snapshots/
local.yml
@@ -30,6 +30,7 @@ services:
30
image: open_production_postgres
31
volumes:
32
- local_postgres_data:/var/lib/postgresql/data
33
+ - .:/app
34
env_file:
35
- ./.envs/.local/.django
36
ports:
scripts/restore_db_from_snapshot.sh
@@ -0,0 +1,5 @@
1
+#!/usr/bin/env bash
2
3
+dropdb -U $POSTGRES_USER $POSTGRES_DB
4
+createdb -U $POSTGRES_USER $POSTGRES_DB
5
+psql -U $POSTGRES_USER $POSTGRES_DB < /app/snapshots/db_snapshot.sql
0 commit comments