# Linearr — docker compose # # Two ways to run: # A) Pull a pre-built image (uncomment `image:`, leave `build:` commented) # B) Build locally from this repo (default — `build: .` is active) # # Either way: # 1. cp .env.example .env and fill in PLEX_URL + PLEX_TOKEN, # JELLYFIN_URL + JELLYFIN_USERNAME + JELLYFIN_PASSWORD, or both. # 2. docker compose up -d # 3. open http://:5005 services: linearr: # --- pick ONE of these two lines --- build: . # image: ghcr.io/gillberg1111/linearr:latest # ----------------------------------- container_name: linearr restart: unless-stopped env_file: .env ports: - "${WEB_PORT:-5005}:5005" volumes: - ./data:/data environment: WEB_HOST: 0.0.0.0 WEB_PORT: 5005 DB_PATH: /data/rotator.db