28 lines
639 B
YAML
28 lines
639 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
|
|
- 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: |