arshad75

docker-compose.yml

Jan 16th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. version: '3'
  2. services:
  3. backend-<your-name>:
  4. image: <docker-hub-account-id>/<repo-name>:<tag>
  5. ports:
  6. - "5000"
  7. links:
  8. - redis
  9. frontend-<your-name>:
  10. image: <docker-hub-account-id>/<repo-name>:<tag>
  11. ports:
  12. - "80:80"
  13. links:
  14. - backend
  15. redis-<your-name>:
  16. image: <docker-hub-account-id>/<repo-name>:<tag>
  17. ports:
  18. - "6379"
Add Comment
Please, Sign In to add comment