1
0

chore(deps): update linuxserver/firefox docker tag to v1147.0.4 (#4093)

This commit is contained in:
renovate[bot]
2026-02-18 02:04:43 +00:00
committed by GitHub
parent bdd41196d1
commit 6ea7a4ec4a
3 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
CONTAINER_NAME="firefox-browser"
DATA_PATH="./data"
HTTP_PWD="Password"
HTTP_USER="user"
MEM_USE="512m"
PANEL_APP_PORT_HTTP="40089"
PANEL_APP_PORT_HTTPS="40090"

View File

@@ -0,0 +1,66 @@
additionalProperties:
formFields:
- default: 40089
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: HTTP Port
labelZh: HTTP端口
label:
en: HTTP Port
zh: HTTP端口
required: true
rule: paramPort
type: number
- default: 40090
edit: true
envKey: PANEL_APP_PORT_HTTPS
labelEn: HTTPS Port
labelZh: HTTPS端口
label:
en: HTTPS Port
zh: HTTPS端口
required: true
rule: paramPort
type: number
- default: "user"
edit: true
envKey: HTTP_USER
labelEn: Access User
labelZh: 访问用户
label:
en: Access User
zh: 访问用户
required: true
type: text
- default: Password
edit: true
envKey: HTTP_PWD
labelEn: Access Password
labelZh: 访问密码
label:
en: Access Password
zh: 访问密码
random: false
required: true
rule: paramComplexity
type: password
- default: "512m"
edit: true
envKey: MEM_USE
labelEn: Shared memory footprint (1gb)
labelZh: 共享内存占用(1gb)
label:
en: Shared memory footprint (1gb)
zh: 共享内存占用(1gb)
required: true
type: text
- default: ./data
edit: true
envKey: DATA_PATH
labelEn: Data folder path
labelZh: 数据文件夹路径
label:
en: Data folder path
zh: 数据文件夹路径
required: true
type: text

View File

@@ -0,0 +1,27 @@
services:
firefox:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:3000
- ${PANEL_APP_PORT_HTTPS}:3001
volumes:
- "${DATA_PATH}:/config"
security_opt:
- seccomp:unconfined
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Shanghai
- CUSTOM_USER=${HTTP_USER}
- PASSWORD=${HTTP_PWD}
shm_size: ${MEM_USE}
image: "linuxserver/firefox:1147.0.4"
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true