Guest User

Untitled

a guest
Mar 16th, 2018
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. version: '2'
  2.  
  3. services:
  4. postgres:
  5. image: postgres
  6. environment:
  7. POSTGRES_USER: postgres
  8. POSTGRES_PASSWORD: changeme
  9. PGDATA: /data/postgres
  10. volumes:
  11. - pgdata:/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. - pgadmin:/root/.pgadmin
  24. ports:
  25. - "5050:5050"
  26. networks:
  27. - postgres
  28. restart: unless-stopped
  29. environment:
  30. - DEFAULT_USER=dmdb@example.com
  31. - DEFAULT_PASSWORD=admin
  32.  
  33. networks:
  34. postgres:
  35. driver: bridge
  36. volumes:
  37. pgdata:
  38. pgadmin:
Add Comment
Please, Sign In to add comment