Files
oss-scripts/wikijs/docker-compose.yml
2025-12-22 15:24:10 +08:00

29 lines
618 B
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
services:
db:
image: postgres:15-alpine
environment:
POSTGRES_DB: wiki
POSTGRES_PASSWORD: 6vmoedxq9c # 修改密码,此处为工具生成
POSTGRES_USER: wikijs
logging:
driver: none
restart: unless-stopped
volumes:
- ./db-data:/var/lib/postgresql/data
wiki:
image: ghcr.io/requarks/wiki:2.5.308
depends_on:
- db
environment:
DB_TYPE: postgres
DB_HOST: db
DB_PORT: 5432
DB_USER: wikijs
DB_PASS: 6vmoedxq9c # 修改密码同第7行
DB_NAME: wiki
restart: unless-stopped
ports:
- "3000:3000"