Skip to main content

Note Mark

https://github.com/enchant97/note-mark

version: "3"

volumes:
  data:

services:
  backend:
    image: ghcr.io/enchant97/note-mark-backend:0.7.0

    restart: unless-stopped
    volumes:
      - data:/data
    environment:
      # !!! REPLACE These !!!
      JWT_SECRET: "REPLACE.WITH.SECRET"
      CORS_ORIGINS: "ip.address.to.host"
    ports:
      - 8001:8000

  frontend:
    image: ghcr.io/enchant97/note-mark-frontend:0.7.0

    restart: unless-stopped
    ports:
      - 8888:8000