We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
version: '3.4' services: xttsapiserver: image: xttsapiserver env_file: .env build: context: .. dockerfile: ./docker/Dockerfile ports: - "${HOST_PORT:-8020}:${CONTAINER_PORT:-8020}" volumes: - ./xtts-server:/xtts-server deploy: resources: reservations: devices: - driver: nvidia device_ids: ['0'] capabilities: [gpu]
version: '3.4'
services: xttsapiserver: image: xttsapiserver env_file: .env build: context: .. dockerfile: ./docker/Dockerfile ports: - "${HOST_PORT:-8020}:${CONTAINER_PORT:-8020}" volumes: - ./xtts-server:/xtts-server deploy: resources: reservations: devices: - driver: nvidia device_ids: ['0'] capabilities: [gpu]
can you make device_ids: a variable as I need to install on device_id 1 not 0.
you would need to add to the .env file and modify the line to something like.... device_ids: $[DEV_ID:-0] which I know isnt correct!!!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
can you make device_ids: a variable as I need to install on device_id 1 not 0.
you would need to add to the .env file
and modify the line to something like.... device_ids: $[DEV_ID:-0] which I know isnt correct!!!
The text was updated successfully, but these errors were encountered: