You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gpustack/docker-compose.yaml

24 lines
500 B

version: '3.8'
services:
gpustack:
image: gpustack/gpustack
ports:
- "80:80"
restart: always
ipc: host
volumes:
- gpustack-data:/var/lib/gpustack
deploy:
resources:
reservations:
devices:
- driver: nvidia
capabilities: [gpu]
# uncomment and update the followings for starting GPUStack worker
# command: --server-url http://myserver --token mytoken
# network_mode: host
volumes:
gpustack-data: {}