leonelhl

Docker: Sample2 - docker-compose.yml

Oct 2nd, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.37 KB | None | 0 0
  1. version: "3"
  2. services:
  3.   web:
  4.     # replace username/repo:tag with your name and image details
  5.     image: leox/sample1:v1.0
  6.     deploy:
  7.       replicas: 5
  8.       resources:
  9.         limits:
  10.           cpus: "0.1"
  11.           memory: 50M
  12.       restart_policy:
  13.         condition: on-failure
  14.     ports:
  15.       - "9000:80"
  16.     networks:
  17.       - webnet
  18. networks:
  19.   webnet:
Advertisement
Add Comment
Please, Sign In to add comment