Skip to content

Install

Releases

Docker Compose Example

This is a minimal example. Majmun is oriented toward experienced users and expects that you know what you're doing.

If the application is publicly available, it requires a proper TLS setup. Refer to the Nginx, Caddy, or Traefik documentation.

For configuration, see Configuration and Examples.

services:
  majmun:
    image: ghcr.io/mazzz1y/majmun:latest
    restart: always
    command:
      - -config
      - /config
    volumes:
      - ./config:/config:ro
      - majmun-cache:/cache
    ports:
      - "8080:8080"

volumes:
  majmun-cache: