arshad75

docker-compose.yml

Oct 17th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. version: '3'
  2. services:
  3. backend:
  4. build: ./python/
  5. ports:
  6. - "5000"
  7. links:
  8. - redis
  9. frontend:
  10. build: ./ui/
  11. ports:
  12. - "80:80"
  13. links:
  14. - backend
  15. redis:
  16. image: "redis:alpine"
  17. ports:
  18. - "6379"
Add Comment
Please, Sign In to add comment