Manifests/docmost/docmost.yml

31 lines
719 B
YAML

version: '3.8'
services:
docmost:
image: docker.io/docmost/docmost:latest
ports:
- target: 3000
published: 3003
protocol: tcp
mode: host
environment:
- DATABASE_URL=postgres://postgres:98836@postgres-db:5432/docmost
- PORT=3000
- REDIS_URL=redis://:98836@redis:6379
- APP_SECRET=QkXq6iVvEy6w2Z9eDsFzNrUuR7yEpXkY
deploy:
placement:
constraints:
- node.labels.platform == dev
replicas: 1
restart_policy:
condition: on-failure
networks:
- postgres_network
- redis_redis_net
networks:
postgres_network:
external: true
redis_redis_net:
external: true
volumes:
docmost_pg_data: