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
{{ message }}
This repository was archived by the owner on Jul 6, 2021. It is now read-only.
If you try to check the local instance of postgres on your host from a container, you can't use `localhost` in `-h` parameter.
277
-
You have to use `bridge` between host OS and Docker Engine. By default host IP is `172.17.0.1` in `docker0` network, but it can be different.
278
-
More information [here](https://nickjanetakis.com/blog/docker-tip-65-get-your-docker-hosts-ip-address-from-in-a-container).
291
+
If you try to check the local instance of postgres on your host from a container,
292
+
you cannot use `localhost` in `-h` parameter. You have to use a bridge between
293
+
host OS and Docker Engine. By default, host IP is `172.17.0.1` in `docker0`
294
+
network, but it vary depending on configuration. More information [here](https://nickjanetakis.com/blog/docker-tip-65-get-your-docker-hosts-ip-address-from-in-a-container).
279
295
280
296
### Usage with `docker-compose`
281
297
282
-
It will run an empty `postgres` database and `postgres-checkup` application that will stop when it's done.
283
-
Local folder `artifacts` will contain `docker` subfolder with check result.
298
+
It will run an empty `postgres` database and `postgres-checkup` application
299
+
that will stop once it's done. The local folder named `artifacts` will contain
300
+
the `docker` subfolder with checkup reports.
284
301
285
302
```bash
286
303
docker-compose build
@@ -297,6 +314,8 @@ various developers, including but not limited to:
297
314
* Alexey Lesovsky, Alexey Ermakov, Maxim Boguk, Ilya Kosmodemiansky et al. from Data Egret (aka PostgreSQL-Consulting) https://github.com/dataegret/pg-utils
298
315
* Josh Berkus, Quinn Weaver et al. from PostgreSQL Experts, Inc. https://github.com/pgexperts/pgx_scripts
299
316
317
+
Docker support implemented by [Ivan Muratov](https://gitlab.com/binakot).
0 commit comments