allow external pg connections

* Postgres containers now, by default, do not allow passwordless users
to connect remotely. This change explicitly allows that case.
This commit is contained in:
chris meyers 2020-02-17 10:16:20 -05:00
parent 5b4ed6dd59
commit 0db0f81e53

View File

@ -50,6 +50,8 @@ services:
container_name: tools_postgres_1
ports:
- "5432:5432"
environment:
POSTGRES_HOST_AUTH_METHOD: trust
memcached:
image: memcached:alpine
container_name: tools_memcached_1