docker-compose.yml 427 B

123456789101112131415161718192021
  1. version: '2'
  2. services:
  3. cet:
  4. hostname: cet4
  5. container_name: cet4
  6. restart: always
  7. image: registry.cn-hangzhou.aliyuncs.com/sxtest/cet4:gpu
  8. privileged: true
  9. ipc: host
  10. tty: true
  11. working_dir: /workspace
  12. ports:
  13. - '18050:8080'
  14. - '22522:22'
  15. volumes:
  16. - ./:/workspace
  17. # deploy:
  18. # resources:
  19. # reservations:
  20. # devices:
  21. # - capabilities: [gpu]