Bauer: 2025-07-07 12:46:09

This commit is contained in:
ralfk 2025-07-07 12:46:09 +02:00
parent 065c06593d
commit c89f9c35dd
2 changed files with 37 additions and 1 deletions

View File

@ -1,6 +1,6 @@
---
created: 2024-06-12T09:29
updated: 2025-05-19T09:03
updated: 2025-07-07T12:45
---
## Splatting mit Hashtabellen

36
Technik/Linkwarden.md Normal file
View File

@ -0,0 +1,36 @@
---
created: 2025-07-07T12:45
updated: 2025-07-07T12:46
---
Beispiel Compose file
services:
postgres:
image: postgres:16-alpine
env_file: .env
restart: always
volumes:
- ./pgdata:/var/lib/postgresql/data
linkwarden:
env_file: .env
environment:
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres
restart: always
# build: . # uncomment to build from source
image: ghcr.io/linkwarden/linkwarden:latest # comment to build from source
ports:
- 3000:3000
volumes:
- ./data:/data/data
depends_on:
- postgres
- meilisearch
meilisearch:
image: getmeili/meilisearch:v1.12.8
restart: always
env_file:
- .env
volumes:
- ./meili_data:/meili_data