Creation de plextraktsync
This commit is contained in:
parent
68a5f82e14
commit
7bcc85d2df
24
serenity/plextraktsync/docker-compose.yml
Normal file
24
serenity/plextraktsync/docker-compose.yml
Normal file
@ -0,0 +1,24 @@
|
||||
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
|
||||
Loading…
Reference in New Issue
Block a user