mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 16:01:01 +00:00
24 lines
525 B
YAML
24 lines
525 B
YAML
networks:
|
|
1panel-network:
|
|
external: true
|
|
services:
|
|
tvheadend:
|
|
image: "linuxserver/tvheadend:latest"
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:9981"
|
|
- "${PANEL_APP_PORT_HTSP}:9982"
|
|
volumes:
|
|
- "${CONFIG_PATH}:/config"
|
|
- "${RECORDINGS_PATH}:/recordings"
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=${TIME_ZONE}
|
|
- RUN_OPTS=${RUN_OPTS:-}
|
|
labels:
|
|
createdBy: "Apps"
|