fix(docker/jellyfin): Moved jellyfin config to local machine due to error with sqlite dbs used for config
Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>rewrite
parent
5aaf3eef53
commit
711dc58f2e
|
@ -289,7 +289,7 @@ services:
|
||||||
devices:
|
devices:
|
||||||
- /dev/dri:/dev/dri
|
- /dev/dri:/dev/dri
|
||||||
volumes:
|
volumes:
|
||||||
- /opt/docker/config/jellyfin/config:/config
|
- /opt/local/jellyfin/config:/config
|
||||||
- /opt/docker/config/jellyfin/cache:/cache
|
- /opt/docker/config/jellyfin/cache:/cache
|
||||||
- /media/series:/tv:ro
|
- /media/series:/tv:ro
|
||||||
- /media/movies:/movies:ro
|
- /media/movies:/movies:ro
|
||||||
|
@ -374,29 +374,25 @@ services:
|
||||||
- USER_UID=1000
|
- USER_UID=1000
|
||||||
- USER_GID=1000
|
- USER_GID=1000
|
||||||
|
|
||||||
athome:
|
|
||||||
container_name: athome
|
|
||||||
image: mos4/athome:latest
|
|
||||||
restart: unless-stopped
|
|
||||||
depends_on:
|
|
||||||
- nginx
|
|
||||||
networks:
|
|
||||||
- net
|
|
||||||
ports:
|
|
||||||
- "10000:8080"
|
|
||||||
|
|
||||||
changedetection:
|
changedetection:
|
||||||
container_name: changedetection
|
container_name: changedetection
|
||||||
image: dgtlmoon/changedetection.io
|
image: dgtlmoon/changedetection.io
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
- nginx
|
||||||
networks:
|
networks:
|
||||||
- net
|
- net
|
||||||
volumes:
|
volumes:
|
||||||
- "/opt/docker/config/changedetection/data/:/datastore"
|
- "/opt/docker/config/changedetection/data/:/datastore"
|
||||||
|
|
||||||
calibre:
|
calibre:
|
||||||
image: lscr.io/linuxserver/calibre-web:latest
|
|
||||||
container_name: calibre
|
container_name: calibre
|
||||||
|
image: lscr.io/linuxserver/calibre-web:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
- nginx
|
||||||
|
networks:
|
||||||
|
- net
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
|
@ -405,9 +401,6 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- "/opt/local/calibre/:/config"
|
- "/opt/local/calibre/:/config"
|
||||||
- "/media/docker/data/calibre/:/books"
|
- "/media/docker/data/calibre/:/books"
|
||||||
ports:
|
|
||||||
- 8084:8083
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
net:
|
net:
|
||||||
|
|
|
@ -60,7 +60,6 @@
|
||||||
path: /media/
|
path: /media/
|
||||||
owner: tudattr
|
owner: tudattr
|
||||||
group: tudattr
|
group: tudattr
|
||||||
recurse: true
|
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
- name: Ensure /media/docker is mounted via NFS
|
- name: Ensure /media/docker is mounted via NFS
|
||||||
|
|
Loading…
Reference in New Issue