Guest User

Untitled

a guest
Dec 9th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. version: '3'
  2. services:
  3. mongo:
  4. container_name: mongo
  5. image: mongo
  6. ports:
  7. - '27019:27017'
  8. volumes:
  9. - /data/db/docker:/data/db
  10. last-table:
  11. container_name: last-table-node
  12. restart: always
  13. build: .
  14. ports:
  15. - '6000:5000'
  16. links:
  17. - mongo
Add Comment
Please, Sign In to add comment