1
0

chore(deps): update ghcr.io/linkwarden/linkwarden docker tag to v2.13.5 (#3181)

This commit is contained in:
renovate[bot]
2025-12-28 13:36:22 +00:00
committed by GitHub
parent 33af8d1926
commit adef26baab
3 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
NEXTAUTH_URL=http://localhost:3000/api/v1/auth
NEXTAUTH_SECRET=${NEXTAUTH_SECRET}
MEILI_MASTER_KEY=${MEILI_MASTER_KEY}
POSTGRES_PASSWORD=${POSTGRES_PASSWORD}

View File

@@ -0,0 +1,46 @@
additionalProperties:
formFields:
- default: "3000"
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Service Port 3000
labelZh: 服务端口 3000
label:
en: Service Port 3000
zh: 服务端口 3000
required: true
rule: paramPort
type: number
- default: ""
edit: true
envKey: NEXTAUTH_SECRET
labelEn: NEXTAuth Secret
labelZh: NEXTAuth 密钥
label:
en: NEXTAuth Secret
zh: NEXTAuth 密钥
required: true
rule: paramComplexity
type: password
- default: ""
edit: true
envKey: POSTGRES_PASSWORD
labelEn: Postgres Password
labelZh: Postgres 数据库密码
label:
en: Postgres Password
zh: Postgres 数据库密码
required: true
rule: paramComplexity
type: password
- default: ""
edit: true
envKey: MEILI_MASTER_KEY
labelEn: Meilisearch Master Key
labelZh: Meilisearch 主密钥
label:
en: Meilisearch Master Key
zh: Meilisearch 主密钥
required: true
rule: paramComplexity
type: password

View File

@@ -0,0 +1,47 @@
services:
linkwarden:
image: ghcr.io/linkwarden/linkwarden:v2.13.5
container_name: ${CONTAINER_NAME}
restart: always
ports:
- ${PANEL_APP_PORT_HTTP}:3000
volumes:
- ./data:/data/data
networks:
- 1panel-network
environment:
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres
- NEXTAUTH_URL=http://localhost:3000/api/v1/auth
- NEXTAUTH_SECRET=${NEXTAUTH_SECRET}
depends_on:
- postgres
- meilisearch
labels:
createdBy: Apps
meilisearch:
image: getmeili/meilisearch:v1.31.0
container_name: ${CONTAINER_NAME}-Meilisearch
restart: always
volumes:
- ./meili_data:/meili_data
networks:
- 1panel-network
environment:
- MEILI_MASTER_KEY=${MEILI_MASTER_KEY}
labels:
createdBy: Apps
postgres:
image: postgres:16-alpine
container_name: ${CONTAINER_NAME}-Postgres
restart: always
volumes:
- ./pgdata:/var/lib/postgresql/data
networks:
- 1panel-network
environment:
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
labels:
createdBy: Apps
networks:
1panel-network:
external: true