demo-app-web.yaml 588 字节
Newer Older
1 2 3 4 5
version: "3.2"
services:
  demo-app-web:
    image: registry.cn-shanghai.aliyuncs.com/ibizsys/demo-app-web:latest
    ports:
6
      - "8080:8080"
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
    networks:
      - agent_network
    deploy:
      resources:
           limits:
               memory: 800M
           reservations:
               memory: 400M    
      mode: replicated
      replicas: 1
    volumes:
      - "nfs:/app/file"

volumes:
  nfs:
    driver: local
    driver_opts:
      type: "nfs"
      o: "addr=172.16.240.109,rw"
      device: ":/nfs"

networks:
  agent_network:
    driver: overlay
    attachable: true