Advertisement
crowley69

Notesnook docker-compose.yml

Apr 2nd, 2025
492
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 6.88 KB | None | 0 0
  1. x-server-discovery: &server-discovery
  2.   NOTESNOOK_SERVER_PORT: 5264
  3.   NOTESNOOK_SERVER_HOST: notesnook-server
  4.   IDENTITY_SERVER_PORT: 8264
  5.   IDENTITY_SERVER_HOST: identity-server
  6.   SSE_SERVER_PORT: 7264
  7.   SSE_SERVER_HOST: sse-server
  8.   SELF_HOSTED: 1
  9.   IDENTITY_SERVER_URL: ${AUTH_SERVER_PUBLIC_URL}
  10.   NOTESNOOK_APP_HOST: ${NOTESNOOK_APP_PUBLIC_URL}
  11.  
  12. x-env-files: &env-files
  13.   - .env
  14.  
  15. services:
  16.   validate:
  17.     image: vandot/alpine-bash
  18.     entrypoint: /bin/bash
  19.     env_file: *env-files
  20.     command:
  21.      - -c
  22.       - |
  23.        # List of required environment variables
  24.         required_vars=(
  25.           "INSTANCE_NAME"
  26.           "NOTESNOOK_API_SECRET"
  27.           "DISABLE_SIGNUPS"
  28.           "SMTP_USERNAME"
  29.           "SMTP_PASSWORD"
  30.           "SMTP_HOST"
  31.           "SMTP_PORT"
  32.           "AUTH_SERVER_PUBLIC_URL"
  33.           "NOTESNOOK_APP_PUBLIC_URL"
  34.           "MONOGRAPH_PUBLIC_URL"
  35.           "ATTACHMENTS_SERVER_PUBLIC_URL"
  36.         )
  37.  
  38.         # Check each required environment variable
  39.         for var in "$${required_vars[@]}"; do
  40.           if [ -z "$${!var}" ]; then
  41.             echo "Error: Required environment variable $$var is not set."
  42.            exit 1
  43.          fi
  44.        done
  45.  
  46.        echo "All required environment variables are set."
  47.    # Ensure the validate service runs first
  48.    restart: "no"
  49.  
  50.  notesnook-db:
  51.    image: mongo:8.0-noble
  52.    hostname: notesnook-db
  53.    volumes:
  54.      - /srv/Notesnook/db:/data/db
  55.      - /srv/Notesnook/db:/data/configdb
  56.    networks:
  57.      - notesnook
  58.    command: --replSet rs0 --bind_ip_all
  59.    depends_on:
  60.      validate:
  61.        condition: service_completed_successfully
  62.    healthcheck:
  63.      test: echo 'db.runCommand("ping").ok' | mongosh mongodb://localhost:27017 --quiet
  64.      interval: 40s
  65.      timeout: 30s
  66.      retries: 3
  67.      start_period: 60s
  68.  # the notesnook sync server requires transactions which only work
  69.  # with a MongoDB replica set.
  70.  # This job just runs `rs.initiate()` on our mongodb instance
  71.  # upgrading it to a replica set. This is only required once but we running
  72.  # it multiple times is no issue.
  73.  initiate-rs0:
  74.    image: mongo:8.0-noble
  75.    networks:
  76.      - notesnook
  77.    depends_on:
  78.        notesnook-db:
  79.          condition: service_healthy
  80.    entrypoint: /bin/sh
  81.    command:
  82.      - -c
  83.      - |
  84.        # Additional wait just to be safe
  85.        echo "Waiting for MongoDB to be fully ready..."
  86.        sleep 5
  87.  
  88.        echo "Initializing MongoDB replica set..."
  89.        mongosh mongodb://notesnook-db:27017 <<EOF
  90.          rs.initiate();
  91.          rs.status();
  92.        EOF
  93.  
  94.  notesnook-s3:
  95.    image: minio/minio:RELEASE.2024-07-29T22-14-52Z
  96.    ports:
  97.      - 0.0.0.0:9000:9000
  98.    networks:
  99.      - notesnook
  100.    volumes:
  101.      - /srv/Notesnook/s3:/data/s3
  102.    environment:
  103.      - MINIO_BROWSER=on
  104.      - MINIO_ROOT_USER=${MINIO_ROOT_USER}
  105.      - MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD}
  106.      - MINIO_CORS_ALLOW_ORIGIN=*
  107.      - MINIO_CORS_ALLOW_METHODS=GET,PUT,POST,DELETE,OPTIONS
  108.      - 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
  109.    depends_on:
  110.      validate:
  111.        condition: service_completed_successfully
  112.    env_file: *env-files
  113.    command: server /data/s3 --address ":9000" --console-address ":9090"
  114.    healthcheck:
  115.      test: timeout 5s bash -c ':> /dev/tcp/127.0.0.1/9000' || exit 1
  116.      interval: 40s
  117.      timeout: 30s
  118.      retries: 3
  119.      start_period: 60s
  120.  
  121.  # There's no way to specify a default bucket in Minio so we have to
  122.  # set it up ourselves.
  123.  setup-s3:
  124.    image: minio/mc:RELEASE.2024-07-26T13-08-44Z
  125.    depends_on:
  126.      - notesnook-s3
  127.    networks:
  128.      - notesnook
  129.    entrypoint: /bin/bash
  130.    env_file: *env-files
  131.    command:
  132.      - -c
  133.      - |
  134.        until mc alias set minio http://notesnook-s3:9000 ${MINIO_ROOT_USER:-minioadmin} ${MINIO_ROOT_PASSWORD:-minioadmin}; do
  135.          sleep 1;
  136.        done;
  137.        mc mb minio/attachments -p
  138.  
  139.  identity-server:
  140.    image: streetwriters/identity:latest
  141.    ports:
  142.      - 0.0.0.0:8264:8264
  143.    networks:
  144.      - notesnook
  145.    env_file: *env-files
  146.    depends_on:
  147.      - notesnook-db
  148.    healthcheck:
  149.      test: wget --tries=1 -nv -q  http://localhost:8264/health -O- || exit 1
  150.      interval: 40s
  151.      timeout: 30s
  152.      retries: 3
  153.      start_period: 60s
  154.    environment:
  155.      <<: *server-discovery
  156.      MONGODB_CONNECTION_STRING: mongodb://notesnook-db:27017/identity?replSet=rs0
  157.      MONGODB_DATABASE_NAME: identity
  158.  
  159.  notesnook-server:
  160.    image: streetwriters/notesnook-sync:latest
  161.    ports:
  162.      - 0.0.0.0:5264:5264
  163.    networks:
  164.      - notesnook
  165.    env_file: *env-files
  166.    depends_on:
  167.      - notesnook-s3
  168.      - setup-s3
  169.      - identity-server
  170.    healthcheck:
  171.      test: wget --tries=1 -nv -q  http://localhost:5264/health -O- || exit 1
  172.      interval: 40s
  173.      timeout: 30s
  174.      retries: 3
  175.      start_period: 60s
  176.    environment:
  177.      <<: *server-discovery
  178.      MONGODB_CONNECTION_STRING: mongodb://notesnook-db:27017/?replSet=rs0
  179.      MONGODB_DATABASE_NAME: notesnook
  180.      S3_INTERNAL_SERVICE_URL: "https://notesnook-s3.example.com"
  181.      S3_INTERNAL_BUCKET_NAME: "attachments"
  182.      S3_ACCESS_KEY_ID: "${MINIO_ROOT_USER:-minioadmin}"
  183.      S3_ACCESS_KEY: "${MINIO_ROOT_PASSWORD:-minioadmin}"
  184.      S3_SERVICE_URL: "${ATTACHMENTS_SERVER_PUBLIC_URL}"
  185.      S3_REGION: "us-east-1"
  186.      S3_BUCKET_NAME: "attachments"
  187.  
  188.  sse-server:
  189.    image: streetwriters/sse:latest
  190.    ports:
  191.      - 0.0.0.0:7264:7264
  192.    env_file: *env-files
  193.    depends_on:
  194.      - identity-server
  195.      - notesnook-server
  196.    networks:
  197.      - notesnook
  198.    healthcheck:
  199.      test: wget --tries=1 -nv -q  http://localhost:7264/health -O- || exit 1
  200.      interval: 40s
  201.      timeout: 30s
  202.      retries: 3
  203.      start_period: 60s
  204.    environment:
  205.      <<: *server-discovery
  206.  
  207.  monograph-server:
  208.    image: streetwriters/monograph:latest
  209.    ports:
  210.      - 0.0.0.0:6264:3000
  211.    env_file: *env-files
  212.    depends_on:
  213.      - notesnook-server
  214.    networks:
  215.      - notesnook
  216.    healthcheck:
  217.      test: wget --tries=1 -nv -q  http://localhost:3000/api/health -O- || exit 1
  218.      interval: 40s
  219.      timeout: 30s
  220.      retries: 3
  221.      start_period: 60s
  222.    environment:
  223.      <<: *server-discovery
  224.      API_HOST: http://notesnook-server:5264
  225.      PUBLIC_URL: ${MONOGRAPH_PUBLIC_URL}
  226.  
  227.  autoheal:
  228.    image: willfarrell/autoheal:latest
  229.    tty: true
  230.    restart: always
  231.    environment:
  232.      - AUTOHEAL_INTERVAL=60
  233.      - AUTOHEAL_START_PERIOD=300
  234.      - AUTOHEAL_DEFAULT_STOP_TIMEOUT=10
  235.    depends_on:
  236.      validate:
  237.        condition: service_completed_successfully
  238.    volumes:
  239.      - /var/run/docker.sock:/var/run/docker.sock
  240. networks:
  241.  notesnook:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement