Created
May 13, 2022 06:52
-
-
Save lgh06/b293c6069f34dcf896d33b2d978edf5f to your computer and use it in GitHub Desktop.
wiki.js docker-compose.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
db: | |
image: postgres:11-alpine | |
environment: | |
POSTGRES_DB: wiki | |
POSTGRES_PASSWORD: wikijsrocks | |
POSTGRES_USER: wikijs | |
logging: | |
driver: "none" | |
restart: unless-stopped | |
volumes: | |
- db-data:/var/lib/postgresql/data | |
wiki: | |
image: registry.cn-qingdao.aliyuncs.com/lgh07_public/requarks_wiki:2.5.281 | |
depends_on: | |
- db | |
environment: | |
DB_TYPE: postgres | |
DB_HOST: db | |
DB_PORT: 5432 | |
DB_USER: wikijs | |
DB_PASS: wikijsrocks | |
DB_NAME: wiki | |
restart: unless-stopped | |
ports: | |
- "8967:3000" | |
volumes: | |
db-data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
see https://github.com/requarks/wiki/pkgs/container/wiki &
https://github.com/requarks/wiki/blob/v2.5.281/dev/examples/docker-compose.yml