office/wikijs/docker-compose.yml hinzugefügt

This commit is contained in:
2026-01-06 07:01:26 +01:00
parent a3e03ba346
commit d3017a787b

View File

@@ -0,0 +1,31 @@
services:
db:
image: postgres:17-alpine
environment:
POSTGRES_DB: wiki
POSTGRES_PASSWORD: Laura1205
POSTGRES_USER: wikijs
logging:
driver: none
restart: unless-stopped
volumes:
- db-data:/var/lib/postgresql/data
wiki:
image: ghcr.io/requarks/wiki:2
depends_on:
- db
environment:
DB_TYPE: postgres
DB_HOST: db
DB_PORT: 5432
DB_USER: wikijs
DB_PASS: Laura1205
DB_NAME: wiki
restart: unless-stopped
ports:
- "3333:3000"
volumes:
db-data: