You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wiki/docker-compose.dev.yml

16 lines
292 B

services:
db:
image: postgres:17
restart: unless-stopped
ports:
- "5432:5432"
environment:
POSTGRES_PASSWORD: wikijs
POSTGRES_USER: wikijs
POSTGRES_DB: wikijs
volumes:
- wikijs-dev-data:/var/lib/postgresql/data
volumes:
wikijs-dev-data: