docker-compose.yml 436 B

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