33 lines
646 B
YAML
33 lines
646 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
ubuntu-ssh:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.bgpt
|
|
volumes:
|
|
- /data:/data
|
|
container_name: ubuntu-ssh
|
|
pull_policy: if_not_present
|
|
tty: true
|
|
restart: unless-stopped
|
|
image: zly/cuda-bgpt:latest
|
|
ports:
|
|
- 3222:22
|
|
environment:
|
|
- NVIDIA_VISIBLE_DEVICES=all
|
|
- NVIDIA_DRIVER_CAPABILITIES=compute,utility
|
|
networks:
|
|
- network_bgpt
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: all
|
|
capabilities: [gpu]
|
|
|
|
networks:
|
|
network_bgpt:
|
|
name: network_bgpt
|