0
私はPostgres 9.5.4データベースをドッカーコンテナ内で実行しています。私はofficial Postgres imagesを使用しています。私は自分のデータベースからバックアップを作成しようとしていますが、これまでのところ運がありません。 docker documentationよると私は(一時的なドッキングウィンドウコンテナ外)ホストマシンで/フォルダ/リリースdockerコンテナからPostgresバックアップを作成する方法
docker run -i --rm --link my_postgres:postgres --volume /releases/:/tmp/ postgres:latest pg_dumpall > /tmp/dump.tar
に dump.tarファイルを保存するために、次のコマンドを期待していた。しかし、これは、次のエラーがスローされます。
pg_dumpall: could not connect to database "template1": could not connect to server: Connection refused
Is the server running locally and accepting
connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5432"?
何が間違っている可能性がありますか?
あなたのpostgresコンテナはどのように作成されましたか? – levi