mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-08-13 12:00:20 +02:00
* docker: update .env and docker-compose.yml for SMTP and new services * docker: add external MinIO, MongoDB, and GarageHQ examples with setup instructions * docs: update README with dotenv docker setup instructions and configuration redirect for external services * docker: update service dependency condition for setup-themes in docker-compose.yml * chore: update example URLs in .env for public services
32 lines
714 B
YAML
32 lines
714 B
YAML
services:
|
|
notesnook-db:
|
|
profiles: [embedded-disabled]
|
|
|
|
identity-server:
|
|
depends_on: !override
|
|
validate:
|
|
condition: service_completed_successfully
|
|
networks:
|
|
- notesnook
|
|
- notesnook-shared
|
|
environment:
|
|
MONGODB_CONNECTION_STRING: ${MONGODB_CONNECTION_STRING_IDENTITY}
|
|
|
|
notesnook-server:
|
|
networks:
|
|
- notesnook
|
|
- notesnook-shared
|
|
depends_on: !override
|
|
notesnook-s3:
|
|
condition: service_started
|
|
setup-s3:
|
|
condition: service_started
|
|
identity-server:
|
|
condition: service_started
|
|
environment:
|
|
MONGODB_CONNECTION_STRING: ${MONGODB_CONNECTION_STRING}
|
|
|
|
networks:
|
|
notesnook-shared:
|
|
external: true
|