7dd1c58ba3
* chore(deps): update lscr.io/linuxserver/lidarr docker tag to v1.1.4 * Update app version --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
25 lines
758 B
YAML
25 lines
758 B
YAML
version: "3.7"
|
|
services:
|
|
lidarr:
|
|
image: lscr.io/linuxserver/lidarr:1.1.4
|
|
container_name: lidarr
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=${TZ}
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- ${APP_DATA_DIR}/data:/config
|
|
- ${ROOT_FOLDER_HOST}/media:/media
|
|
ports:
|
|
- ${APP_PORT}:8686
|
|
restart: unless-stopped
|
|
networks:
|
|
- tipi_main_network
|
|
labels:
|
|
traefik.enable: ${APP_EXPOSED}
|
|
traefik.http.routers.lidarr.rule: Host(`${APP_DOMAIN}`)
|
|
traefik.http.routers.lidarr.entrypoints: websecure
|
|
traefik.http.routers.lidarr.service: lidarr
|
|
traefik.http.routers.lidarr.tls.certresolver: myresolver
|
|
traefik.http.services.lidarr.loadbalancer.server.port: 8686 |