Compare commits
2 commits
85ba14147d
...
0347348d29
Author | SHA1 | Date | |
---|---|---|---|
|
0347348d29 | ||
|
0f924e63e1 |
3 changed files with 31 additions and 14 deletions
|
@ -5,3 +5,5 @@ KASM_PASS=
|
|||
#ports
|
||||
CALIBRE_WEB_PORT=
|
||||
CALIBRE_PORT=
|
||||
KOMGA_PORT=
|
||||
MYLAR_PORT=
|
||||
|
|
|
@ -12,9 +12,6 @@ services:
|
|||
- ${MEDIA_PATH}:/mnt/Media
|
||||
ports:
|
||||
- ${CALIBRE_WEB_PORT}:8083
|
||||
# env_file:
|
||||
# - books.env
|
||||
# - .env
|
||||
restart: unless-stopped
|
||||
|
||||
calibre: #VNC client to manage Calibre library remotely https://docs.linuxserver.io/images/docker-calibre/
|
||||
|
@ -34,3 +31,32 @@ services:
|
|||
ports:
|
||||
- ${CALIBRE_PORT}:8080
|
||||
restart: unless-stopped
|
||||
|
||||
komga:
|
||||
image: gotson/komga
|
||||
container_name: komga
|
||||
environment:
|
||||
- TZ=${TZ}
|
||||
volumes:
|
||||
- ${DATA_PATH}/komga/config:/config
|
||||
- ${DATA_PATH}/komga/data:/data
|
||||
- ${MEDIA_PATH}/Comics:/mnt/Media/Comics
|
||||
ports:
|
||||
- ${KOMGA_PORT}:25600
|
||||
user: "${UID}:${GID}"
|
||||
restart: unless-stopped
|
||||
|
||||
mylar3:
|
||||
image: lscr.io/linuxserver/mylar3:nightly
|
||||
container_name: mylar3
|
||||
environment:
|
||||
- PUID=${UID}
|
||||
- PGID=${GID}
|
||||
- TZ=${TZ}
|
||||
volumes:
|
||||
- ${DATA_PATH}/mylar3/config:/config
|
||||
- ${MEDIA_PATH}/Comics:/comics
|
||||
- ${TEMP_PATH}/torrents/downloads:/downloads
|
||||
ports:
|
||||
- ${MYLAR_PORT}:8090
|
||||
restart: unless-stopped
|
||||
|
|
|
@ -27,17 +27,6 @@ services:
|
|||
- ${AIRSONIC_REFIX_PORT}:80
|
||||
restart: unless-stopped
|
||||
|
||||
navidrome:
|
||||
image: deluan/navidrome:latest
|
||||
container_name: navidrome
|
||||
user: 1001:1001
|
||||
ports:
|
||||
- "4533:4533"
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- "${DATA_PATH}/navidrome/data:/data"
|
||||
- "${MEDIA_PATH}/Music:/music:ro"
|
||||
|
||||
lidarr: # music library management for media server https://docs.linuxserver.io/images/docker-lidarr/
|
||||
image: lscr.io/linuxserver/lidarr:latest
|
||||
container_name: lidarr
|
||||
|
|
Loading…
Add table
Reference in a new issue