mirror of
https://github.com/tcsenpai/sdnext_docker.git
synced 2025-06-02 17:30:12 +00:00
25 lines
453 B
YAML
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]
|