Guest User

Untitled

a guest
Feb 3rd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. version: '3.1' # goo.gl/CKoe2V
  2. services:
  3. db:
  4. image: postgres
  5. environment:
  6. POSTGRES_PASSWORD: example #
  7. POSTGRES_USER: postgres # username to log in to postgres
  8. PGDATA: /var/lib/postgres/data # where postgres config and the database files reside
  9. POSTGRES_DB: db # name of database
  10. POSTGRES_INITDB_ARGS: " "
  11. ports:
  12. - 5555:5432
  13. adminer:
  14. image: adminer
  15. ports:
  16. - 8080:8080
Add Comment
Please, Sign In to add comment