Guest User

Untitled

a guest
Oct 15th, 2017
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. version: '3'
  2. volumes:
  3. pgdata:
  4. esdata:
  5. redisdata:
  6.  
  7. services:
  8. elasticsearch:
  9. image: "docker.elastic.co/elasticsearch/elasticsearch:5.6.1"
  10. ports:
  11. - "9200:9200"
  12. - "9300:9300"
  13. environment:
  14. discovery.type: single-node
  15. redis:
  16. image: "redis"
  17. volumes:
  18. - redisdata:/var/lib/redis
  19. ports:
  20. - "6379:6379"
  21. sql:
  22. image: "postgres"
  23. volumes:
  24. - pgdata:/var/lib/postgresql/data
  25. ports:
  26. - "5432:5432"
  27. environment:
  28. POSTGRES_USER: "admin"
  29. POSTGRES_PASSWORD: "Password6."
  30. POSTGRES_DB: "memore"
Add Comment
Please, Sign In to add comment