kopia lustrzana https://github.com/OpenDroneMap/WebODM
25 wiersze
555 B
YAML
25 wiersze
555 B
YAML
|
# Chaining this file to the main docker-compose file adds
|
||
|
# a default processing node instance. This is best for users
|
||
|
# who are just getting started with WebODM.
|
||
|
|
||
|
version: '2.1'
|
||
|
services:
|
||
|
webapp:
|
||
|
depends_on:
|
||
|
- node-odm
|
||
|
environment:
|
||
|
- WO_DEFAULT_NODES
|
||
|
node-odm:
|
||
|
image: opendronemap/nodeodm:gpu
|
||
|
ports:
|
||
|
- "3000"
|
||
|
restart: unless-stopped
|
||
|
oom_score_adj: 500
|
||
|
deploy:
|
||
|
resources:
|
||
|
reservations:
|
||
|
devices:
|
||
|
- driver: nvidia
|
||
|
count: 1
|
||
|
capabilities: [gpu]
|