Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- services:
- db:
- image: postgres:17.4
- container_name: postgres
- environment:
- POSTGRES_DB: postgres
- POSTGRES_PASSWORD: postgres
- POSTGRES_USER: postgres
- logging:
- driver: none
- networks:
- restart: unless-stopped
- volumes:
- - $DOCKERDIR/appdata/postgres:/config
- wiki:
- image: ghcr.io/requarks/wiki:2
- container_name: wiki.js
- depends_on:
- - db
- environment:
- DB_TYPE: postgres
- DB_HOST: postgres
- DB_PORT: 5432
- DB_USER: postgres
- DB_PASS: postgres
- DB_NAME: postgres
- restart: unless-stopped
- networks:
- ports: "3000:3000"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement