Bauer: 2025-07-07 12:46:09
This commit is contained in:
parent
065c06593d
commit
c89f9c35dd
@ -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
36
Technik/Linkwarden.md
Normal 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
|
Loading…
Reference in New Issue
Block a user