Advertisement
JeanBritz

PostgreSQL Docker Compose

Mar 30th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. version: '3'
  2. services:
  3.  
  4. postgres:
  5. container_name: postgres-dev
  6. image: postgres:11.5
  7. volumes:
  8. - /home/<user>/volumes/postgres/pg_data:/var/lib/postgresql/data
  9. - /home/<user>/volumes/postgres/pg_tablespaces/:/home
  10. ports:
  11. - 5432:5432
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement