Skip to content

Installing the Notion AI My Mind Server on Docker

Bruno Moya edited this page Mar 1, 2021 · 1 revision

Docker-Compose

You can run the server on docker container. Change the [SERVER_PORT] variable with the desired port to run the server with and save the code below as a docker-compose.yml file.

Then simply call docker-compose up -d and server will run automatically.

version: '3.4'

services:
  app:
    image: elblogbruno/notion-ai-mymind:latest
    ports:
      - [SERVER_PORT]:5000

When a new update is available, you can call :

docker-compose stop notionai-mymind
docker-compose up -d notionai-mymind