Advertisement
Guest User

Untitled

a guest
May 28th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4. postgres:
  5. image: postgres
  6. environment:
  7. POSTGRES_USER: postgres
  8. POSTGRES_PASSWORD: postgres
  9. PGDATA: /data/postgres
  10. volumes:
  11. - /data/postgres:/data/postgres
  12. ports:
  13. - "5432:5432"
  14. networks:
  15. - postgres
  16. restart: unless-stopped
  17.  
  18. pgadmin:
  19. links:
  20. - postgres:postgres
  21. image: fenglc/pgadmin4
  22. volumes:
  23. - /data/pgadmin:/root/.pgadmin
  24. ports:
  25. - "5050:5050"
  26. networks:
  27. - postgres
  28. restart: unless-stopped
  29.  
  30. networks:
  31. postgres:
  32. driver: bridge
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement