1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| # 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.
| services:
| webapp:
| depends_on:
| - node-odm
| environment:
| - WO_DEFAULT_NODES
| node-odm:
| image: opendronemap/nodeodm
| expose:
| - "3000"
| restart: unless-stopped
| oom_score_adj: 500
| deploy:
| resources:
| limits:
| cpus: '6'
| memory: 48G
| reservations:
| cpus: '4'
|
|