mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-22 16:00:58 +00:00
Add SELKIES_UI_TITLE to upstream-confirmed LinuxServer Selkies GUI apps so the sidebar title can be configured from the 1Panel install form while preserving the upstream default. Also update modmanager upgrade scripts to honor MODCACHE_PATH instead of hardcoding ./data/modcache. Validation: git diff --check; static audit issues=0; path script audit issues=0; docker compose config failures=0; 1Panel smoke passed for firefox-linuxserver latest and webtop-linuxserver latest.
29 lines
729 B
YAML
29 lines
729 B
YAML
networks:
|
|
1panel-network:
|
|
external: true
|
|
services:
|
|
opera:
|
|
image: "linuxserver/opera:latest"
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:3000"
|
|
- "${PANEL_APP_PORT_HTTPS}:3001"
|
|
volumes:
|
|
- "${CONFIG_PATH}:/config"
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=${TIME_ZONE}
|
|
- OPERA_CLI=${OPERA_CLI:-https://www.linuxserver.io/}
|
|
- CUSTOM_USER=${CUSTOM_USER}
|
|
- PASSWORD=${PASSWORD}
|
|
- TITLE=${TITLE:-Opera}
|
|
- SELKIES_UI_TITLE=${SELKIES_UI_TITLE:-Selkies}
|
|
- DASHBOARD=${DASHBOARD:-selkies-dashboard}
|
|
- LC_ALL=${LC_ALL}
|
|
labels:
|
|
createdBy: "Apps"
|