25 lines
642 B
YAML
25 lines
642 B
YAML
version: '3'
|
|
services:
|
|
scheduler:
|
|
image: mcuadros/ofelia:latest
|
|
container_name: scheduler
|
|
depends_on:
|
|
- plextraktsync
|
|
command: daemon --docker
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
labels:
|
|
ofelia.job-run.plextraktsync.schedule: "@every 6h"
|
|
ofelia.job-run.plextraktsync.container: "plextraktsync"
|
|
plextraktsync:
|
|
image: ghcr.io/taxel/plextraktsync
|
|
command: sync
|
|
container_name: plextraktsync
|
|
restart: on-failure:2
|
|
volumes:
|
|
- /opt/appdata/plextraktsync/config:/app/config
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Paris
|