aba1bceb62
* Add Mylar3 * Update description.md * Save Unsaved Changed
26 lines
812 B
YAML
26 lines
812 B
YAML
version: "3"
|
|
|
|
services:
|
|
mylar3:
|
|
container_name: mylar3
|
|
image: lscr.io/linuxserver/mylar3:v0.7.1-ls84
|
|
ports:
|
|
- ${APP_PORT}:8090
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data/mylar3-config:/config
|
|
- ${ROOT_FOLDER_HOST}/media/data/comics:/comics
|
|
- ${ROOT_FOLDER_HOST}/media/downloads/mylar3:/downloads
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=${TZ}
|
|
restart: unless-stopped
|
|
networks:
|
|
- tipi_main_network
|
|
labels:
|
|
traefik.enable: ${APP_EXPOSED}
|
|
traefik.http.routers.mylar3.rule: Host(`${APP_DOMAIN}`)
|
|
traefik.http.routers.mylar3.entrypoints: websecure
|
|
traefik.http.routers.mylar3.service: mylar3
|
|
traefik.http.routers.mylar3.tls.certresolver: myresolver
|
|
traefik.http.services.mylar3.loadbalancer.server.port: 8090 |