16 lines
373 B
YAML
16 lines
373 B
YAML
services:
|
|
droppy:
|
|
container_name: droppy
|
|
image: silverwind/droppy:12.2.0
|
|
ports:
|
|
- 8989:8989
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /opt/droppy:/config
|
|
- /media/scratch/droppy:/files
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--no-verbose", "--spider", "http://localhost:8989/"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|