17 lines
432 B
YAML
17 lines
432 B
YAML
version: "2.1"
|
|
|
|
services:
|
|
restic-exporter:
|
|
image: ngosang/restic-exporter
|
|
container_name: restic-exporter
|
|
environment:
|
|
- TZ=Europe/Madrid
|
|
- RESTIC_REPOSITORY=/data
|
|
- RESTIC_PASSWORD=password_here
|
|
# - RESTIC_PASSWORD_FILE=/file_with_password_here
|
|
- REFRESH_INTERVAL=1800 # 30 min
|
|
volumes:
|
|
- /host_path/restic/data:/data
|
|
ports:
|
|
- "8001:8001"
|
|
restart: unless-stopped
|