20 lines
419 B
YAML
20 lines
419 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-SHELL",
|
|
"wget --no-verbose --spider http://127.0.0.1:8989/ || exit 1",
|
|
]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|