mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
32 lines
598 B
YAML
32 lines
598 B
YAML
version: '3.5'
|
|
services:
|
|
wiki:
|
|
image: ghcr.io/requarks/wiki:2.5
|
|
restart: unless-stopped
|
|
environment:
|
|
- DB_TYPE
|
|
- DB_HOST
|
|
- DB_PORT
|
|
- DB_USER
|
|
- DB_PASS
|
|
- DB_NAME
|
|
depends_on:
|
|
- db
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.constraint-label-stack=wikijs
|
|
db:
|
|
image: postgres:14
|
|
restart: unless-stopped
|
|
environment:
|
|
- POSTGRES_USER
|
|
- POSTGRES_PASSWORD
|
|
- POSTGRES_DB
|
|
volumes:
|
|
- wiki-db-data:/var/lib/postgresql/data
|
|
networks:
|
|
dokploy-network:
|
|
external: true
|
|
volumes:
|
|
wiki-db-data:
|