24 lines
393 B
YAML
24 lines
393 B
YAML
version: "3"
|
|
services:
|
|
backup:
|
|
image: cronjob
|
|
build: ./
|
|
networks:
|
|
- backup-network
|
|
restart: "unless-stopped"
|
|
volumes:
|
|
- /home/ddninja/fdn2/backups:/backups
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-file: 4
|
|
max-size: 100m
|
|
compress: "true"
|
|
|
|
|
|
networks:
|
|
backup-network:
|
|
external: true
|
|
name:
|
|
backup-network
|