I've just started backing up my docker after a near death of my OMV server and am having some issues.
- The compose-backup starts at 4am as per my cron job and then loops for two hours before crashing. omv-compose-backup.txt
- The backup only ever backs up my Plex container even though I have the filter set to blank (should backup all?)
- I assume this is related to #1
Here is my Plex compose file
Code
---
version: "2.1"
services:
plex:
image: lscr.io/linuxserver/plex:latest
container_name: plex
network_mode: host
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
- VERSION=latest
volumes:
- ./transcode:/transcode
- ./config:/config
- /etc/localtime:/etc/localtime:ro
- CHANGE_TO_COMPOSE_DATA_PATH:/multimedia
restart: unless-stopped
Display More