sdnext_docker/docker-compose.yml
2024-10-26 18:24:16 +02:00

25 lines
453 B
YAML

version: "3.8"
services:
automatic:
build:
context: .
dockerfile: Dockerfile
volumes:
- ./app:/mnt/app
ports:
- 7860:7860
command:
[
"/bin/bash",
"-c",
"cd /mnt/app && chmod +x ./entrypoint.sh && ./entrypoint.sh",
]
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities: [gpu]