Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. Here's an example docker-compose.yml which mounts a directory to be our external config directory.
  2. Note that we open ports 80 and 443, for http and https respectively.
  3.  
  4. == docker-compose.yml ==
  5. version: "2"
  6. services:
  7.  
  8. neo4j:
  9. ports:
  10. - 8476:7474
  11. image: menome/thelink-neo4j-main
  12. restart: always
  13. volumes:
  14. - /docker/neo4j/data:/var/lib/neo4j/data
  15. - /docker/neo4j/import:/var/lib/neo4j/import
  16. web:
  17. image: menome/thelink-dialog-web
  18. ports:
  19. - 80:3000
  20. - 443:443
  21. volumes:
  22. - /docker/thelink/ext_conf:/srv/theLink/ext_config
  23. links:
  24. - neo4j
  25. restart: always
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement