mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-08-13 03:50:19 +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
620 B
YAML
32 lines
620 B
YAML
name: notesnook-garage-infra
|
|
|
|
services:
|
|
notesnook-garage:
|
|
image: dxflrs/garage:v2.3.0
|
|
hostname: notesnook-garage
|
|
restart: unless-stopped
|
|
ports:
|
|
- 3900:3900
|
|
- 3901:3901
|
|
- 3902:3902
|
|
networks:
|
|
- notesnook-shared
|
|
volumes:
|
|
- s3data:/var/lib/garage
|
|
- ./garage.toml:/etc/garage.toml:ro
|
|
environment:
|
|
GARAGE_RPC_SECRET: ${GARAGE_RPC_SECRET}
|
|
healthcheck:
|
|
test: ["CMD", "/garage", "status"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 30s
|
|
|
|
networks:
|
|
notesnook-shared:
|
|
name: notesnook-shared
|
|
|
|
volumes:
|
|
s3data:
|