File size: 695 Bytes
5d1f0ae |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# -----------------------------------------------------------------------------
# A sample Docker Compose file to help you replicate our test environment
# -----------------------------------------------------------------------------
services:
zsad-service:
image: zsad-image:1
build:
context: .
container_name: zsad-container
volumes:
- ./shared_folder:/app/output
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities: [gpu]
command: [ "python3", "runner.py" ]
|