docker-compose.yml 407 B

12345678910111213141516171819
  1. services:
  2. tnbm:
  3. image: registry.cn-chengdu.aliyuncs.com/tnb028/tnbm:12345678
  4. container_name: tnbm
  5. restart: always
  6. network_mode: host
  7. deploy:
  8. resources:
  9. limits:
  10. cpus: '0.5'
  11. memory: 512M
  12. reservations:
  13. cpus: '0.1'
  14. memory: 128M
  15. logging:
  16. driver: "json-file"
  17. options:
  18. max-size: "10m"
  19. max-file: "1"