mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2025-02-13 23:10:33 +08:00
* chore(deps): update linuxserver/calibre-web docker tag to v2021 * Update app version [skip ci] --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
26 lines
582 B
YAML
26 lines
582 B
YAML
version: '3'
|
|
services:
|
|
calibre-web:
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:8083"
|
|
volumes:
|
|
- "./data/config:/config"
|
|
- "./data/books:/books"
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=${TIME_ZONE}
|
|
- DOCKER_MODS=linuxserver/mods:universal-calibre #optional
|
|
- OAUTHLIB_RELAX_TOKEN_SCOPE=1 #optional
|
|
image: linuxserver/calibre-web:2021.12.16
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|