Update Linkwarden Image and Variables (#1399)

- Update Linkwarden to Official Image
This commit is contained in:
DrMxrcy 2023-10-19 13:33:33 -04:00 committed by GitHub
parent 6d4850b7ee
commit 49ceba66c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 4 deletions

View File

@ -5,9 +5,8 @@
"available": true,
"exposable": true,
"id": "linkwarden",
"tipi_version": 1,
"supported_architectures": ["amd64"],
"version": "v1.0.1",
"tipi_version": 2,
"version": "v1.2.0",
"categories": ["data"],
"description": "A self-hosted, open-source collaborative bookmark manager to collect, organize and archive webpages.",
"short_desc": "A self-hosted, open-source collaborative bookmark manager",
@ -25,6 +24,14 @@
"label": "Linkwarden Nextauth Secret",
"min": 32,
"env_variable": "LINKWARDEN_NEXTAUTH_SECRET"
},
{
"type": "boolean",
"label": "Disable Registration",
"hint": "Needed for at least one user. If on registration will be disabled.",
"required": false,
"default": "false",
"env_variable": "LINKWARDEN_NEXT_PUBLIC_DISABLE_REGISTRATION"
}
]
}

View File

@ -2,12 +2,13 @@ version: "3.7"
services:
linkwarden:
image: ghcr.io/selfhostedhub/linkwarden:v1.0.1
image: ghcr.io/linkwarden/linkwarden:v1.2.0
container_name: linkwarden
environment:
- DATABASE_URL=postgresql://tipi:${LINKWARDEN_DB_PASSWORD}@linkwarden-db:5432/linkwarden
- NEXTAUTH_SECRET=${LINKWARDEN_NEXTAUTH_SECRET}
- NEXTAUTH_URL=${APP_PROTOCOL:-http}://${APP_DOMAIN}
- NEXT_PUBLIC_DISABLE_REGISTRATION=${LINKWARDEN_NEXT_PUBLIC_DISABLE_REGISTRATION}
restart: unless-stopped
volumes:
- ${APP_DATA_DIR}/data/linkwarden:/data/data