-
Notifications
You must be signed in to change notification settings - Fork 0
Quick Start
This is the shortest path from zero to a working Censorarr 1.6.5 install.
The fastest Windows path is the native installer:
- Open the Censorarr Releases page.
- Download
Censorarr-Setup-X.Y.Z.exe. - Run the installer.
- Leave Open Censorarr checked when Setup finishes.
- Complete the Setup Wizard at
http://127.0.0.1:8087. - Use Browse... to select your Movies and TV folders.
- Start with Dry Run enabled.
Latest Windows installer:
https://github.com/leestow/Censorarr/releases/latest
See Windows Installation for mapped drives, UNC paths, updates, and troubleshooting.
Download the latest package from GitHub Releases:
Censorarr-X.Y.Z-linux-amd64.deb
Install it:
sudo apt install ./Censorarr-X.Y.Z-linux-amd64.debThe package creates the censorarr service and dedicated censorarr system user.
Check it:
sudo systemctl status censorarrBy default the web UI is local-only:
http://127.0.0.1:8087
Use Browse... in the Setup Wizard to select real Linux folders such as /mnt/media/Movies and /mnt/media/TV.
If your media is group-owned, add the service account to that group and restart:
sudo usermod -aG media censorarr
sudo systemctl restart censorarrReplace media with your actual media group.
For a headless server, see Native Linux Installation for secure LAN access through /etc/default/censorarr.
git clone https://github.com/leestow/Censorarr.git
cd CensorarrOn Synology, you can instead download/extract the repository into a Container Manager project folder such as:
/volume1/docker/censorarr
At minimum change:
TZPUIDPGID- the left side of the Movies volume
- the left side of the TV Shows volume, if used
Example:
environment:
TZ: America/Chicago
PUID: "1026"
PGID: "100"
UMASK: "002"
CENSORARR_SYNOLOGY_COMPAT_MODE: "auto"
volumes:
- /volume1/Movies:/media:rw
- /volume1/TV Shows:/tv:rwThe shipped application/config/work mounts are relative to the project folder and normally should not be changed:
- ./app:/app
- ./config:/config
- ./work:/workdocker compose up -d --buildThe shipped browser mapping is:
8087:8787
so the UI is normally:
http://SERVER-IP:8087
A fresh install stays idle until the wizard is completed.
Recommended first-pass choices:
- Movies folder:
/media - TV folder:
/tvif used - Dry Run: On
- Transcription: local CPU
- Plex: Skip
- Radarr/Sonarr: Skip
- Bazarr: Skip
This validates the standalone core before adding integrations.
docker compose logs -for:
docker logs -f censorarrYou should see the media preflight pass before Whisper loads.
Dry Run still needs to read the source media, but it does not perform the final media replacement.
Once detection looks correct, enable Apply mode.
See Transcription & GPU Worker.
docker exec -it censorarr python /app/selftest.pyA healthy 1.6.5 install should end with:
Censorarr v1.6.5 self-test: ALL PASS
Censorarr Wiki
- Home
- Quick Start
- Windows
- Native Linux
- Synology Container Manager
- Docker / Linux
- Setup Wizard
- Media & Permissions
- Transcription & GPU Worker
- Plex
- Radarr & Sonarr
- Bazarr & Subtitles
- Profanity & Detection
- CLEAN Audio & Safety
- Scheduling & Notifications
- Updating
- Troubleshooting
- Configuration Reference
- Security & Secrets