ESH-VM-DOCKER Full Docker Set

This commit is contained in:
2024-05-29 23:33:23 -07:00
parent 1b078890b6
commit 8e878bfd7c
31 changed files with 20313 additions and 0 deletions

1
compose/calibre/.env Normal file
View File

@@ -0,0 +1 @@
# VARIABLE=value #comment

View File

@@ -0,0 +1,32 @@
version: "2.1"
services:
calibre:
image: lscr.io/linuxserver/calibre:latest
container_name: calibre
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
- TZ=America/Los_Angeles
- PASSWORD= #optional
- CLI_ARGS= #optional
volumes:
- /mnt/books/calibre:/config
ports:
- 8082:8080
- 8181:8181
- 8281:8081
restart: unless-stopped
labels:
- homepage.group=Media
- homepage.name=Calibre
- homepage.icon=mdi-bookshelf
- homepage.description=EBook Server (esh)
- homepage.href=http://10.0.50.45:8082
networks:
- tnet
networks:
tnet:
name: traefik-net
external: true