Manifests/docmost/docmost.yml
2025-08-22 20:33:45 +03:00

23 lines
482 B
YAML

version: '3.8'
services:
docmost:
image: docmost/docmost:latest
ports:
- "889:3000"
environment:
- DATABASE_URL=postgres://postgres:98836@postgres-db:5432/docmost
- PORT=3000
deploy:
placement:
constraints:
- node.labels.platform == dev
replicas: 1
restart_policy:
condition: on-failure
networks:
- postgres_network
networks:
postgres_network:
external: true
volumes:
docmost_pg_data: