5 lines
168 B
Bash
Executable File
5 lines
168 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run pg_dump command inside the postgresDB container
|
|
docker exec -i -e PGPASSWORD=Na21907722 postgresDB pg_dump -U postgres phoenix > postgres-backup.sql
|