mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-13 12:52:18 +08:00
17 lines
484 B
YAML
17 lines
484 B
YAML
services:
|
|
libretv:
|
|
container_name: ${CONTAINER_NAME}
|
|
image: bestzwei/libretv:latest
|
|
networks:
|
|
- 1panel-network
|
|
restart: always
|
|
ports:
|
|
- ${PANEL_APP_PORT_HTTP}:80
|
|
environment:
|
|
- PASSWORD=${PANEL_APP_PASSWORD} # 关键配置
|
|
command: ["/docker-entrypoint.sh", "nginx", "-g", "daemon off;"]
|
|
labels:
|
|
createdBy: "Apps"
|
|
networks:
|
|
1panel-network:
|
|
external: true |