Note Mark
  • Support The Project
  • Examples

    Shown examples use official Docker images. Examples also show links to download the files, to provide easier deployment.

    Example deployments use insecure credentials, you MUST change them

    You MUST specify a versioned image tag, latest is: 1.0.1

    Basic

    This example shows how to use the all-in-one image in this most basic form.

    # file: docker-compose.yml
    # built-for: 1.0.0
    volumes:
      data:
    
    services:
      note-mark:
        image: ghcr.io/enchant97/note-mark:{{< app-version >}}
        restart: unless-stopped
        volumes:
          - data:/data
        environment:
          # !!! REPLACE These !!!
          AUTH_TOKEN__SECRET: "!!! REPLACE ME !!!"
          PUBLIC_URL: "http://notemark.example.com"
        ports:
          - 80:8080