Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. version: '2.1'
  2. services:
  3.  
  4. database:
  5. image: postgres:9.5.6
  6. environment:
  7. POSTGRES_PASSWORD: secretpass
  8. ports:
  9. - 5432:5432
  10.  
  11. docker-compose --file docker-compose.pg.yml up --build
  12.  
  13. Starting app_database_1 ...
  14. Starting app_database_1 ... done
  15. Attaching to app_database_1
  16. database_1 | LOG: database system was shut down at 2017-09-22 18:48:55 UTC
  17. database_1 | LOG: MultiXact member wraparound protections are now enabled
  18. database_1 | LOG: database system is ready to accept connections
  19. database_1 | LOG: autovacuum launcher started
  20.  
  21. psql postgresql://postgres:secretpass@0.0.0.0
  22.  
  23. database_1 | FATAL: password authentication failed for user "postgres"
  24. database_1 | DETAIL: Connection matched pg_hba.conf line 95: "host all all 0.0.0.0/0 md5"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement