docker-compose.yml 440 B

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