Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- x-server-discovery: &server-discovery
- NOTESNOOK_SERVER_PORT: 5264
- NOTESNOOK_SERVER_HOST: notesnook-server
- IDENTITY_SERVER_PORT: 8264
- IDENTITY_SERVER_HOST: identity-server
- SSE_SERVER_PORT: 7264
- SSE_SERVER_HOST: sse-server
- SELF_HOSTED: 1
- IDENTITY_SERVER_URL: ${AUTH_SERVER_PUBLIC_URL}
- NOTESNOOK_APP_HOST: ${NOTESNOOK_APP_PUBLIC_URL}
- x-env-files: &env-files
- - .env
- services:
- validate:
- image: vandot/alpine-bash
- entrypoint: /bin/bash
- env_file: *env-files
- command:
- - -c
- - |
- # List of required environment variables
- required_vars=(
- "INSTANCE_NAME"
- "NOTESNOOK_API_SECRET"
- "DISABLE_SIGNUPS"
- "SMTP_USERNAME"
- "SMTP_PASSWORD"
- "SMTP_HOST"
- "SMTP_PORT"
- "AUTH_SERVER_PUBLIC_URL"
- "NOTESNOOK_APP_PUBLIC_URL"
- "MONOGRAPH_PUBLIC_URL"
- "ATTACHMENTS_SERVER_PUBLIC_URL"
- )
- # Check each required environment variable
- for var in "$${required_vars[@]}"; do
- if [ -z "$${!var}" ]; then
- echo "Error: Required environment variable $$var is not set."
- exit 1
- fi
- done
- echo "All required environment variables are set."
- # Ensure the validate service runs first
- restart: "no"
- notesnook-db:
- image: mongo:8.0-noble
- hostname: notesnook-db
- volumes:
- - /srv/Notesnook/db:/data/db
- - /srv/Notesnook/db:/data/configdb
- networks:
- - notesnook
- command: --replSet rs0 --bind_ip_all
- depends_on:
- validate:
- condition: service_completed_successfully
- healthcheck:
- test: echo 'db.runCommand("ping").ok' | mongosh mongodb://localhost:27017 --quiet
- interval: 40s
- timeout: 30s
- retries: 3
- start_period: 60s
- # the notesnook sync server requires transactions which only work
- # with a MongoDB replica set.
- # This job just runs `rs.initiate()` on our mongodb instance
- # upgrading it to a replica set. This is only required once but we running
- # it multiple times is no issue.
- initiate-rs0:
- image: mongo:8.0-noble
- networks:
- - notesnook
- depends_on:
- notesnook-db:
- condition: service_healthy
- entrypoint: /bin/sh
- command:
- - -c
- - |
- # Additional wait just to be safe
- echo "Waiting for MongoDB to be fully ready..."
- sleep 5
- echo "Initializing MongoDB replica set..."
- mongosh mongodb://notesnook-db:27017 <<EOF
- rs.initiate();
- rs.status();
- EOF
- notesnook-s3:
- image: minio/minio:RELEASE.2024-07-29T22-14-52Z
- ports:
- - 0.0.0.0:9000:9000
- networks:
- - notesnook
- volumes:
- - /srv/Notesnook/s3:/data/s3
- environment:
- - MINIO_BROWSER=on
- - MINIO_ROOT_USER=${MINIO_ROOT_USER}
- - MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD}
- - MINIO_CORS_ALLOW_ORIGIN=*
- - MINIO_CORS_ALLOW_METHODS=GET,PUT,POST,DELETE,OPTIONS
- - MINIO_CORS_ALLOW_HEADERS=Accept,Authorization,Content-Type,Content-Length,X-Amz-Date,X-Amz-Content-SHA256,X-Amz-Algorithm,X-Amz-Credential,X-Amz-Signature,X-Amz-Security-Token
- depends_on:
- validate:
- condition: service_completed_successfully
- env_file: *env-files
- command: server /data/s3 --address ":9000" --console-address ":9090"
- healthcheck:
- test: timeout 5s bash -c ':> /dev/tcp/127.0.0.1/9000' || exit 1
- interval: 40s
- timeout: 30s
- retries: 3
- start_period: 60s
- # There's no way to specify a default bucket in Minio so we have to
- # set it up ourselves.
- setup-s3:
- image: minio/mc:RELEASE.2024-07-26T13-08-44Z
- depends_on:
- - notesnook-s3
- networks:
- - notesnook
- entrypoint: /bin/bash
- env_file: *env-files
- command:
- - -c
- - |
- until mc alias set minio http://notesnook-s3:9000 ${MINIO_ROOT_USER:-minioadmin} ${MINIO_ROOT_PASSWORD:-minioadmin}; do
- sleep 1;
- done;
- mc mb minio/attachments -p
- identity-server:
- image: streetwriters/identity:latest
- ports:
- - 0.0.0.0:8264:8264
- networks:
- - notesnook
- env_file: *env-files
- depends_on:
- - notesnook-db
- healthcheck:
- test: wget --tries=1 -nv -q http://localhost:8264/health -O- || exit 1
- interval: 40s
- timeout: 30s
- retries: 3
- start_period: 60s
- environment:
- <<: *server-discovery
- MONGODB_CONNECTION_STRING: mongodb://notesnook-db:27017/identity?replSet=rs0
- MONGODB_DATABASE_NAME: identity
- notesnook-server:
- image: streetwriters/notesnook-sync:latest
- ports:
- - 0.0.0.0:5264:5264
- networks:
- - notesnook
- env_file: *env-files
- depends_on:
- - notesnook-s3
- - setup-s3
- - identity-server
- healthcheck:
- test: wget --tries=1 -nv -q http://localhost:5264/health -O- || exit 1
- interval: 40s
- timeout: 30s
- retries: 3
- start_period: 60s
- environment:
- <<: *server-discovery
- MONGODB_CONNECTION_STRING: mongodb://notesnook-db:27017/?replSet=rs0
- MONGODB_DATABASE_NAME: notesnook
- S3_INTERNAL_SERVICE_URL: "https://notesnook-s3.example.com"
- S3_INTERNAL_BUCKET_NAME: "attachments"
- S3_ACCESS_KEY_ID: "${MINIO_ROOT_USER:-minioadmin}"
- S3_ACCESS_KEY: "${MINIO_ROOT_PASSWORD:-minioadmin}"
- S3_SERVICE_URL: "${ATTACHMENTS_SERVER_PUBLIC_URL}"
- S3_REGION: "us-east-1"
- S3_BUCKET_NAME: "attachments"
- sse-server:
- image: streetwriters/sse:latest
- ports:
- - 0.0.0.0:7264:7264
- env_file: *env-files
- depends_on:
- - identity-server
- - notesnook-server
- networks:
- - notesnook
- healthcheck:
- test: wget --tries=1 -nv -q http://localhost:7264/health -O- || exit 1
- interval: 40s
- timeout: 30s
- retries: 3
- start_period: 60s
- environment:
- <<: *server-discovery
- monograph-server:
- image: streetwriters/monograph:latest
- ports:
- - 0.0.0.0:6264:3000
- env_file: *env-files
- depends_on:
- - notesnook-server
- networks:
- - notesnook
- healthcheck:
- test: wget --tries=1 -nv -q http://localhost:3000/api/health -O- || exit 1
- interval: 40s
- timeout: 30s
- retries: 3
- start_period: 60s
- environment:
- <<: *server-discovery
- API_HOST: http://notesnook-server:5264
- PUBLIC_URL: ${MONOGRAPH_PUBLIC_URL}
- autoheal:
- image: willfarrell/autoheal:latest
- tty: true
- restart: always
- environment:
- - AUTOHEAL_INTERVAL=60
- - AUTOHEAL_START_PERIOD=300
- - AUTOHEAL_DEFAULT_STOP_TIMEOUT=10
- depends_on:
- validate:
- condition: service_completed_successfully
- volumes:
- - /var/run/docker.sock:/var/run/docker.sock
- networks:
- notesnook:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement