Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. version: '3'
  2. services:
  3. web:
  4. image: your_image:latest
  5. ports:
  6. - "8081:80"
  7. deploy:
  8. labels:
  9. - scaleMin=3
  10. - scaleMax=16
  11. replicas: 3
  12. update_config:
  13. parallelism: 4
  14. delay: 10s
  15. resources:
  16. limits:
  17. cpus: '6.0'
  18. memory: 4096M
  19. restart_policy:
  20. condition: any
  21. placement:
  22. constraints:
  23. - node.role != manager
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement