123456789101112131415161718192021 |
- version: '2'
- services:
- idcard:
- hostname: schoolcert
- container_name: schoolcert
- restart: always
- image: registry.cn-hangzhou.aliyuncs.com/sxtest/schoolcert:gpu
- privileged: true
- ipc: host
- tty: true
- working_dir: /workspace
- ports:
- - '18080:8080'
- - '18222:22'
- volumes:
- - ./:/workspace
- # deploy:
- # resources:
- # reservations:
- # devices:
- # - capabilities: [gpu]
|