fix
This commit is contained in:
@@ -11,11 +11,11 @@ If a different version of Postgres is needed, just change the version number in
|
|||||||
## Dumping a Database
|
## Dumping a Database
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run --network host --rm -v .:/tmp -e PGPASSWORD=mysecretpassword postgres:16 pg_dump -h localhost -U myuser -d mydb > /tmp/dump.sql
|
docker run --network host --rm -v .:/tmp -e PGPASSWORD=mysecretpassword postgres:16 pg_dump -h localhost -U myuser -d mydb -f /tmp/dump.sql
|
||||||
```
|
```
|
||||||
|
|
||||||
## Restoring a Database
|
## Restoring a Database
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run --network host --rm -v .:/tmp -e PGPASSWORD=mysecretpassword postgres:16 psql -h localhost -U myuser -d mydb < /tmp/dump.sql
|
docker run --network host --rm -v .:/tmp -e PGPASSWORD=mysecretpassword postgres:16 psql -h localhost -U myuser -d mydb -f /tmp/dump.sql
|
||||||
```
|
```
|
Reference in New Issue
Block a user